Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
|
mstensho (USE GERRIT)
2015/01/09 21:21:35
Please omit unnecessary HTML, HEAD and BODY tags h
| |
| 3 <head> | |
| 4 <style> | |
| 5 col { | |
|
mstensho (USE GERRIT)
2015/01/09 21:21:35
Indentation is off, here, and in all the other fil
| |
| 6 height: 200px; | |
| 7 } | |
| 8 td { | |
| 9 background-color: #66f; | |
| 10 height: 25px; | |
| 11 } | |
| 12 </style> | |
| 13 <script type="text/javascript"> | |
| 14 function runTest() { | |
|
mstensho (USE GERRIT)
2015/01/09 21:21:35
To get rid of the BODY tag, you could rewrite this
| |
| 15 var col = document.getElementById('thecol'); | |
| 16 col.offsetTop; | |
| 17 col.style.height="100px"; | |
| 18 window.checkLayout("td", document.getElementById("test-output")) ; | |
|
mstensho (USE GERRIT)
2015/01/09 21:21:35
No need for "window.".
| |
| 19 } | |
| 20 </script> | |
| 21 <script src="../../resources/check-layout.js"></script> | |
| 22 </head> | |
| 23 <body onload="runTest()"> | |
| 24 Tests that the height of table cell changes on changing the colgroup hei ght to new height. | |
| 25 <table style="-webkit-writing-mode: vertical-lr"> | |
| 26 <colgroup> | |
| 27 <col id="thecol"> | |
| 28 </colgroup> | |
| 29 <tbody> | |
| 30 <tr> | |
| 31 <td id="colWidth" data-expected-height="100">Hello World</td > | |
|
mstensho (USE GERRIT)
2015/01/09 21:21:35
Unused id.
| |
| 32 </tr> | |
| 33 </tbody> | |
| 34 </table> | |
| 35 <div id="test-output"></div> | |
| 36 </body> | |
| 37 </html> | |
| OLD | NEW |