tenfourfox/layout/reftests/table-anonymous-boxes/208305-1.html

20 lines
355 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>