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

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/second-cell-doesnt-fit-in-column.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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 table {
4 border-collapse: collapse;
mstensho (USE GERRIT) 2016/05/04 20:23:44 Does this actually make any difference? Border col
5 }
6 td {
7 background-color: #ddd;
8 border: 1px solid black;
9 }
10 tr {
11 break-inside: avoid;
12 }
13 </style>
14 <p>crbug.com/99124: A break-inside:avoid row doesn't fit on page, so it breaks a nd the text inside it moves to avoid straddling the page-break.</p>
15 <div style="columns:2; column-fill:auto; height:5em; line-height:2em;">
16 first column<br>
17 <table cellpadding="1" cellspacing="0">
18 <tr>
19 <td>second column<br>second column</td>
mstensho (USE GERRIT) 2016/05/04 20:23:44 I only see one cell. The name of this file suggest
20 </tr>
21 </table>
22 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698