| Index: third_party/WebKit/LayoutTests/fragmentation/cell-doesnt-fit-in-column-after-previous-content.html
|
| diff --git a/third_party/WebKit/LayoutTests/fragmentation/cell-doesnt-fit-in-column-after-previous-content.html b/third_party/WebKit/LayoutTests/fragmentation/cell-doesnt-fit-in-column-after-previous-content.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6b091614c6d2a608cba8112a06f27d2e5da2c01c
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fragmentation/cell-doesnt-fit-in-column-after-previous-content.html
|
| @@ -0,0 +1,19 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +td {
|
| + background-color: #ddd;
|
| + border: 1px solid black;
|
| +}
|
| +tr {
|
| + break-inside: avoid;
|
| +}
|
| +</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>
|
|
|