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

Unified Diff: third_party/WebKit/LayoutTests/fast/multicol/balance-repeating-table-headers.html

Issue 2456003002: Allow pagination struts to push objects below the exact top of the next column. (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
Index: third_party/WebKit/LayoutTests/fast/multicol/balance-repeating-table-headers.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/balance-repeating-table-headers.html b/third_party/WebKit/LayoutTests/fast/multicol/balance-repeating-table-headers.html
new file mode 100644
index 0000000000000000000000000000000000000000..807120d10133109badc9813f2f0f5020d362922c
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/multicol/balance-repeating-table-headers.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<p>There should be a yellow/hotpink square 2x2 chessboard below.</p>
+<div style="columns:3; column-gap:0; width:60px; line-height:20px; orphans:1; widows:1;">
+ <div style="background:yellow;"><br></div>
+ <table cellspacing="0" cellpadding="0" style="width:40px;">
+ <!-- The thead should be repeated at the top of each column
+ that the table breaks into. -->
+ <thead style="break-inside:avoid;">
+ <tr>
+ <td style="background:hotpink;"><br></td>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><br></td>
+ </tr>
+ <tr>
+ <td style="background:yellow;"><br></td>
+ </tr>
+ <tr>
+ <td><br></td>
+ </tr>
+ </tbody>
+ </table>
+ <br>
+ <br>
+ <br>
+</div>

Powered by Google App Engine
This is Rietveld 408576698