Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/table-rowspan-cell-override-logical-content-height-reset-issue.html

Issue 1396493005: Table rowspan cell's height resize when percent element present in the cell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refector code and Layout test reduced. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698