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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/table-rowspan-table-height-and-row-precent-height-too-high.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 height.</h3>
mstensho (USE GERRIT) 2016/01/18 14:37:03 Can you indent it a little? Also "too large" inste
a.suchit2 2016/01/19 13:02:16 Done.
13 <h4>For this test to PASS, it should not crash.</h4>
14 <table>
15 <tr class="row-height">
mstensho (USE GERRIT) 2016/01/18 14:37:03 "too large" instead of "too height"
a.suchit2 2016/01/19 13:02:16 Done.
16 <td height="876543210" rowspan="2">This row span cell height is too height.</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