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

Unified Diff: third_party/WebKit/LayoutTests/fragmentation/single-cell-too-large-for-page.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, 7 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/fragmentation/single-cell-too-large-for-page.html
diff --git a/third_party/WebKit/LayoutTests/fragmentation/single-cell-too-large-for-page.html b/third_party/WebKit/LayoutTests/fragmentation/single-cell-too-large-for-page.html
new file mode 100644
index 0000000000000000000000000000000000000000..df4daa77daae21d4e3cc81e1b7e7be827f50ed6a
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fragmentation/single-cell-too-large-for-page.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<style>
+table {
+ border-collapse: collapse;
+}
+td {
+ background-color: #ddd;
+ border: 1px solid black;
+ font-size: 50px;
+}
+tr {
+ break-inside: avoid;
+}
+</style>
+<p>crbug.com/99124: Table rows shouldn't straddle page boundaries.</p>
+<div style="-webkit-columns:3; line-height: 60px; column-fill: auto; height:210px; background-color: yellow;">
+ <table>
+ <tr>
+ <td><div id="container" data-total-y=1>Text <br> Text <br> Text <br> Text <br> Text <br> Text <br> Text <br> Text</td>
+ <td>Text <br> Text <br> Text <br> Text <br> Text <br> Text <br> Text <br> Text</td>
+ </tr>
+ </table>
+</div>
+<div id="console"></div>
+<script src="../resources/check-layout.js"></script>
+<script>
+checkLayout("#container", document.getElementById("console"));
+</script>
+

Powered by Google App Engine
This is Rietveld 408576698