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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/table-rowspan-table-height-and-row-precent-height-too-large.html

Issue 1405393002: Crashes when percent calculation of row's height goes very high. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments addressed 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 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 </script>
6 <style>
7 td { font: 20px/1 Ahem }
8 .row-height { height : 48515% }
9 </style>
10 <body>
11 <h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issu es/detail?id=408066">408066</a>.
12 <br/>Page is crashing on assression when table row span cell's percent height is too large.</h3>
mstensho (USE GERRIT) 2016/01/20 13:00:59 *assertion* And I think you can just remove the f
dgrogan 2016/01/21 01:38:13 I see you're consistent with this preference :) J
a.suchit2 2016/01/21 07:08:40 So right now, I will leave as it is.
13 <h4>For this test to PASS, it should not crash.</h4>
14 <table>
15 <tr class="row-height">
16 <td height="876543210" rowspan="2">This row span cell height is too large.</td>
17 </tr>
18 <tr class="row-height">
19 <td></td>
20 </tr>
21 </table>
22 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698