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

Unified Diff: third_party/WebKit/LayoutTests/fragmentation/cell-doesnt-fit-in-column-after-previous-content-expected.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/cell-doesnt-fit-in-column-after-previous-content-expected.html
diff --git a/third_party/WebKit/LayoutTests/fragmentation/cell-doesnt-fit-in-column-after-previous-content-expected.html b/third_party/WebKit/LayoutTests/fragmentation/cell-doesnt-fit-in-column-after-previous-content-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..983820ccea34173db183b3218e7ebdce58c2a8b7
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fragmentation/cell-doesnt-fit-in-column-after-previous-content-expected.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<style>
+td {
+ background-color: #ddd;
+ border: 1px solid black;
+}
+</style>
+<p>crbug.com/99124: A break-inside:avoid row doesn't fit on page, so it breaks and the text inside it moves to avoid straddling the page-break.</p>
+<div style="columns:2; column-fill:auto; height:5em; line-height:2em;">
+ first column<br>
+ <table cellpadding="1" cellspacing="0">
+ <tr>
+ <td>second column<br>second column</td>
+ </tr>
+ </table>
+</div>

Powered by Google App Engine
This is Rietveld 408576698