Index: third_party/WebKit/LayoutTests/fragmentation/break-in-first-table-row-only.html |
diff --git a/third_party/WebKit/LayoutTests/fragmentation/break-in-first-table-row-only.html b/third_party/WebKit/LayoutTests/fragmentation/break-in-first-table-row-only.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..72c164fefeb60eff8e7c90cfa7535866fc45e857 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fragmentation/break-in-first-table-row-only.html |
@@ -0,0 +1,33 @@ |
+<!DOCTYPE html> |
+<style> |
+ body { overflow: scroll; } |
+</style> |
+<p>There should be a hotpink square below.</p> |
+<div id="multicol" style="position:relative; columns:2; column-fill:auto; column-gap:0; width:100px; height:90px; line-height:20px; orphans:1; widows:1;"> |
+ <br> |
+ <br> |
+ <br> |
+ <table data-expected-height="110" cellspacing="0" cellpadding="0"> |
+ <col style="width:10px;"> |
+ <col style="width:10px;"> |
+ <tr data-expected-height="50"> |
+ <td data-expected-height="50"> |
+ <br><br> |
+ </td> |
+ </tr> |
+ <tr data-expected-height="60"> |
+ <td data-expected-height="60"> |
+ <br> |
+ <div data-offset-y="40" style="position:relative; background:hotpink;"><br></div> |
+ <br> |
+ </td> |
+ <td> |
+ <div data-offset-y="40" style="position:relative; height:20px; background:hotpink;"><br></div> |
+ </td> |
+ </tr> |
+ </table> |
+</div> |
+<script src="../resources/check-layout.js"></script> |
+<script> |
+ checkLayout("#multicol"); |
+</script> |