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

Side by Side Diff: LayoutTests/fast/table/table-rowspan-row-height-less-than-content-height.html

Issue 1023133002: Negative row height when cell has percentage height. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added Layout test Created 5 years, 9 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 table { width : 100px }
4 #perc-height { height : 1% }
esprehn 2015/06/12 06:21:33 #percent-height, don't abbreviate.
a.suchit 2015/06/12 12:40:20 Done.
5 </style>
6 <script src="../../resources/check-layout.js"></script>
7 <body onload="checkLayout('tr');">
8 <h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issu es/detail?id=406043">406043</a>. Text Rendering is not correct on page.</h3>
Julien - ping for review 2015/03/26 15:22:10 The name of the bug as well as this CL could be im
a.suchit 2015/06/12 12:40:20 Done.
9 <table border="1">
10 <tr>
11 <td rowspan="4"> This is rowspan cell. It would spanned for 3 rows i n table. This is rowspan cell. It would spanned for 3 rows in table. This is row span cell. It would spanned for 3 rows in table. This is rowspan cell. It would spanned for 3 rows in table. It would spanned for 3 rows in table. It would span ned for 3 rows in table. It would spanned for 3 rows in table. It would spanned for 3 rows in table.</td>
12 <td> This is first row second column. </td>
13 </tr>
14 <tr data-offset-y="424">
Julien - ping for review 2015/03/26 15:22:10 Can we use meaningful numbers here? It's difficult
a.suchit 2015/06/12 12:40:20 Done.
15 <td id="perc-height"> This is second row first column. But it should display as second column. </td>
16 </tr>
17 <tr data-offset-y="596">
18 <td id="perc-height"> This is third row first column. But it should display as second column. </td>
19 </tr>
20 <tr data-offset-y="822">
21 <td id="perc-height"> This is fourth row first column. But it should display as second column. </td>
22 </tr>
23 </table>
24 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698