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

Side by Side Diff: LayoutTests/fast/table/table-rowspan-crash-with-huge-pedding-value.html

Issue 131103017: ASSERTION FAILED: !remainder in WebCore::RenderTableSection::distributeExtraRowSpanHeightToAutoRows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added a test case and fixed review comments Created 6 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 <html>
3 <head>
4 <script type="text/javascript">
5 if (window.testRunner)
6 testRunner.dumpAsText();
7 </script>
8 <style>
9 td, h4, h6 {padding-top:25000pt;}
10 </style>
Julien - ping for review 2014/03/21 04:18:05 Nit: The indentation is not consistent above (here
a.suchit 2014/03/24 10:53:59 Done.
11 </head>
12 <body>
13 <h2>Test for chromium bug : <a href="https://code.google.com/p/chromium/ issues/detail?id=334652">334652</a>. ASSERTION FAILED: !remainder in WebCore::Re nderTableSection::distributeExtraRowSpanHeightToAutoRows.</h3>
14 <h3>For this test to PASS, it should not crash.</h4>
15 <table border="1">
16 <tr>
17 <td>r0c0</td>
18 <td rowspan="2">
19 <h6>r0c1</h6>
20 <h4> rowspan=2</h4>
21 </td>
22 </tr>
23 </table>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698