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

Unified Diff: LayoutTests/fast/table/table-rowspan-crash-only-percent-rows-with-less-than-100-percent.html

Issue 398013005: ASSERTION FAILED: !extraRowSpanningHeight in WebCore::RenderTableSection::distributeRowSpanHeightTo… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 4 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: LayoutTests/fast/table/table-rowspan-crash-only-percent-rows-with-less-than-100-percent.html
diff --git a/LayoutTests/fast/table/table-rowspan-crash-only-percent-rows-with-less-than-100-percent.html b/LayoutTests/fast/table/table-rowspan-crash-only-percent-rows-with-less-than-100-percent.html
new file mode 100644
index 0000000000000000000000000000000000000000..e0cc35ddbd64e97b5659681b9fc2f6e8122b6a37
--- /dev/null
+++ b/LayoutTests/fast/table/table-rowspan-crash-only-percent-rows-with-less-than-100-percent.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <script type="text/javascript">
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ </script>
+ <style>
+ tr {
+ height:71%;
+ }
+ </style>
+</head>
+<body>
+ <h2>Test for chromium bug : <a href="https://code.google.com/p/chromium/issues/detail?id=366579">366579</a>. ASSERTION FAILED: !extraRowSpanningHeight in WebCore::RenderTableSection::distributeRowSpanHeightToRows.</h3>
+ <h3>For this test to PASS, it should not crash.</h4>
+ <table>
+ <tr>
+ <th rowspan="2">A</th>
+ <td></td>
+ </tr>
+ </table>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698