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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/table/table-rowspan-table-height-and-row-precent-height-too-high.html
diff --git a/third_party/WebKit/LayoutTests/fast/table/table-rowspan-table-height-and-row-precent-height-too-high.html b/third_party/WebKit/LayoutTests/fast/table/table-rowspan-table-height-and-row-precent-height-too-high.html
new file mode 100644
index 0000000000000000000000000000000000000000..50296eda94183f11f429424899e57fe769baf860
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/table/table-rowspan-table-height-and-row-precent-height-too-high.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+<style>
+ td { font: 20px/1 Ahem }
+ .row-height { height : 48515% }
+</style>
+<body>
+ <h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issues/detail?id=408066">408066</a>.
+<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.
+ <h4>For this test to PASS, it should not crash.</h4>
+ <table>
+ <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.
+ <td height="876543210" rowspan="2">This row span cell height is too height.</td>
+ </tr>
+ <tr class="row-height">
+ <td></td>
+ </tr>
+ </table>
+</body>

Powered by Google App Engine
This is Rietveld 408576698