Chromium Code Reviews| 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="61"> | |
| 9 <tr> | |
| 10 <td rowspan="2" id="ta"><textarea style='height:100%;'>Text area tex t</textarea></td> | |
|
mstensho (USE GERRIT)
2016/01/12 19:18:13
If you're still having trouble, try to add "border
a.suchit2
2016/01/13 05:58:43
Now, It is not needed. It is working. Thanks
| |
| 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 |