OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 col { | |
6 height: 200px; | |
7 } | |
8 td { | |
9 background-color: #66f; | |
10 height: 25px; | |
11 } | |
12 </style> | |
13 <script type="text/javascript"> | |
14 function runTest() { | |
15 var col = document.getElementById('thecol'); | |
16 col.offsetTop; | |
17 col.style.height="100px"; | |
18 window.checkLayout("td", document.getElementById("test-output"))
; | |
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
> | |
32 </tr> | |
33 </tbody> | |
34 </table> | |
35 <div id="test-output"></div> | |
36 </body> | |
37 </html> | |
OLD | NEW |