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

Unified Diff: third_party/WebKit/LayoutTests/fragmentation/break-in-first-table-row-only.html

Issue 2423403002: Set logical top and height of table rows and cells in the first layout pass. (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fragmentation/break-in-first-table-row-only-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fragmentation/break-in-first-table-row-only-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698