OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 td, textarea { font: 20px/1 Ahem } | |
4 </style> | |
5 <script src="../../resources/check-layout.js"></script> | |
6 <body> | |
7 <h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issu es/detail?id=445253">445253</a>. Setting rowspan=2 on the table cell causes the whole table to resize again and again.</h3> | |
8 <table border="1" data-expected-height="58"> | |
9 <tr> | |
10 <td rowspan="2" id="ta"><textarea style='height:100%;'>Text area tex t</textarea></td> | |
11 </tr> | |
12 </table> | |
13 </body> | |
14 | |
15 <script> | |
16 document.body.offsetTop; | |
17 document.getElementById("ta").rowSpan="2"; | |
18 checkLayout('table'); | |
19 </script> | |
OLD | NEW |