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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 table {
4 border-collapse: collapse;
5 }
6 td {
7 background-color: #ddd;
8 font-size: 165px;
mstensho (USE GERRIT) 2016/02/03 14:38:48 This is fine. There's no good way of specifying th
9 border: 1px solid black;
10 }
11 </style>
12 <script>
13 if (window.testRunner)
14 testRunner.setPrinting();
15 </script>
16 <p>crbug.com/99124: Table rows shouldn't straddle page boundaries.</p>
17 <table>
18 <tr><td>Text Text Text Text Text</td><td>Text Text Text Text Text</td></tr>
19 <tr><td>Text Text Text Text Text</td><td>Text Text Text Text Text</td></tr>
20 </table>
21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698