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> |