Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/table/table-rowspan-cell-override-logical-content-height-reset-issue.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/table/table-rowspan-cell-override-logical-content-height-reset-issue.html b/third_party/WebKit/LayoutTests/fast/table/table-rowspan-cell-override-logical-content-height-reset-issue.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b80710758bf8560a8e4f811c3d2aeb67c5e88d3b |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/table/table-rowspan-cell-override-logical-content-height-reset-issue.html |
| @@ -0,0 +1,19 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + td, textarea { font: 20px/1 Ahem } |
| +</style> |
| +<script src="../../resources/check-layout.js"></script> |
| +<body> |
| + <h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issues/detail?id=445253">445253</a>. Setting rowspan=2 on the table cell causes the whole table to resize again and again.</h3> |
| + <table border="1" data-expected-height="61"> |
| + <tr> |
| + <td rowspan="2" id="ta"><textarea style='height:100%;'>Text area text</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
|
| + </tr> |
| + </table> |
| +</body> |
| + |
| +<script> |
| + document.body.offsetTop; |
| + document.getElementById("ta").rowSpan="2"; |
| + checkLayout('table'); |
| +</script> |