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

Unified Diff: LayoutTests/fast/table/table-rowspan-height-less-than-one-percent.html

Issue 821203003: Handling of percent less than 1 while extra height distribution in spanning rows. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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-height-less-than-one-percent.html
diff --git a/LayoutTests/fast/table/table-rowspan-height-less-than-one-percent.html b/LayoutTests/fast/table/table-rowspan-height-less-than-one-percent.html
new file mode 100644
index 0000000000000000000000000000000000000000..dfae54b9c424ac64f3ea872f2e2c3a7eb1d4fab3
--- /dev/null
+++ b/LayoutTests/fast/table/table-rowspan-height-less-than-one-percent.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<style>
+ th { height: .5%; }
+</style>
+<script type="text/javascript">
+ if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+<body>
+ <h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issues/detail?id=408066">408066</a>. ASSERTION FAILED: !extraRowSpanningHeight in blink::RenderTableSection::distributeRowSpanHeightToRows.</h3>
+ <p>For this test to PASS, it should not crash.</p>
Julien - ping for review 2015/01/02 10:13:37 While it's OK to do a crash check, it's not really
+ <table>
+ <th>
+ <td rowspan="2">a</td>
+ </th>
+ </table>
+</body>

Powered by Google App Engine
This is Rietveld 408576698