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

Unified Diff: third_party/WebKit/LayoutTests/fast/multicol/cell-taller-than-col-straddles-columns.html

Issue 1602773005: Respect break-inside:avoid on table rows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated Created 4 years, 9 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/cell-taller-than-col-straddles-columns.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/cell-taller-than-col-straddles-columns.html b/third_party/WebKit/LayoutTests/fast/multicol/cell-taller-than-col-straddles-columns.html
new file mode 100644
index 0000000000000000000000000000000000000000..2015c9c64be0563f68884cd060bb673f8bdef0b1
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/multicol/cell-taller-than-col-straddles-columns.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<p>crbug.com/99124 - If a cell is taller than the page then don't attempt to prevent it straddling pages.</p>
+<div style="-webkit-columns:3; column-fill:auto; line-height:20px; height:90px; background:yellow;">
+ <br>
+ <table>
+ <tr>
+ <td data-total-y=2>
mstensho (USE GERRIT) 2016/03/17 14:04:03 It's going to be hard to get this one to fail, sin
+ First column<br>
+ First column<br>
+ First column<br>
+ Second column<br>
+ Second column<br>
+ Second column<br>
+ Second column<br>
+ Third column<br>
+ </td>
+ </tr>
+ </table>
+</div>
+<div id="console"></div>
+<script src="../../resources/check-layout.js"></script>
+<script>
+checkLayout("td", document.getElementById("console"));
+</script>
+

Powered by Google App Engine
This is Rietveld 408576698