tenfourfox/layout/reftests/table-anonymous-boxes/208305-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

20 lines
355 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
.cell {display:table-cell}
</style>
<script type="text/javascript">
function doTest() {
ss = document.styleSheets[0];
ss.cssRules[0].style.display="block";
}
</script>
</head>
<body onload="doTest()">
<div class="cell">foo</div><div class="cell">bar</div><div class="cell">baz</div>
</body>
</html>