Fri, 16 Jan 2015 18:13:44 +0100
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>