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

Side by Side Diff: LayoutTests/fast/table/table-rowspan-height-less-than-one-percent.html

Issue 821203003: Handling of percent less than 1 while extra height distribution in spanning rows. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 8 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 #perc-height, th { height: .5%; }
4 table { height: 10000px }
5 </style>
6 <script src="../../resources/check-layout.js"></script>
7 <body onload="checkLayout('th');">
8 <h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issu es/detail?id=408066">408066</a>. ASSERTION FAILED: !extraRowSpanningHeight in bl ink::RenderTableSection::distributeRowSpanHeightToRows.</h3>
9 <table border="1">
10 <th id="perc-height" data-expected-height="22">
11 <td rowspan="2">r0c0</td>
12 </th>
13 <tr>
14 </tr>
15 <tr>
16 <td>r2c0</td>
17 </tr>
18 </table>
19 <table border="1">
20 <th id="perc-height" data-expected-height="24">
21 <td>r0c0</td>
22 <td rowspan="2">r0c1</td>
23 </th>
24 <tr>
25 </tr>
26 <tr>
27 <td>r2c0</td>
28 </tr>
29 </table>
30 </body>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/table/table-rowspan-height-less-than-one-percent-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698