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

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     1 <!DOCTYPE HTML>
     2 <html>
     3 <head>
     4 <style type="text/css">
     5 .cell {display:table-cell}
     6 </style>
     7 <script type="text/javascript">
     8 function doTest() {
     9 ss = document.styleSheets[0];
    10 ss.cssRules[0].style.display="block";
    11 }
    12 </script>
    13 </head>
    15 <body onload="doTest()">
    16 <div class="cell">foo</div><div class="cell">bar</div><div class="cell">baz</div>
    17 </body>
    19 </html>

mercurial