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

Unified Diff: third_party/WebKit/LayoutTests/printing/cells-dont-fit-on-page-paginated.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, 11 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/printing/cells-dont-fit-on-page-paginated.html
diff --git a/third_party/WebKit/LayoutTests/printing/cells-dont-fit-on-page-paginated.html b/third_party/WebKit/LayoutTests/printing/cells-dont-fit-on-page-paginated.html
new file mode 100644
index 0000000000000000000000000000000000000000..2e7b08ab92f6fcc42f9eef75a0e7a84655931ab7
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/printing/cells-dont-fit-on-page-paginated.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<style>
+table {
+ border-collapse: collapse;
+}
+td {
+ background-color: #ddd;
+ font-size: 165px;
mstensho (USE GERRIT) 2016/02/03 14:38:48 This is fine. There's no good way of specifying th
+ border: 1px solid black;
+}
+</style>
+<script>
+ if (window.testRunner)
+ testRunner.setPrinting();
+</script>
+<p>crbug.com/99124: Table rows shouldn't straddle page boundaries.</p>
+<table>
+ <tr><td>Text Text Text Text Text</td><td>Text Text Text Text Text</td></tr>
+ <tr><td>Text Text Text Text Text</td><td>Text Text Text Text Text</td></tr>
+</table>
+

Powered by Google App Engine
This is Rietveld 408576698