Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/multicol/cell-doesnt-fit-on-page-has-text.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/multicol/cell-doesnt-fit-on-page-has-text.html b/third_party/WebKit/LayoutTests/fast/multicol/cell-doesnt-fit-on-page-has-text.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5c979de8fc03685c121d437aaa9e2d7ba8520c2d |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/multicol/cell-doesnt-fit-on-page-has-text.html |
| @@ -0,0 +1,21 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +table { |
| + border-collapse: collapse; |
| +} |
| +td { |
| + background-color: #ddd; |
| + font-size: 65px; |
| + border: 1px solid black; |
| +} |
| +tr { |
| + page-break-inside: avoid; |
|
mstensho (USE GERRIT)
2016/04/04 21:05:38
break-inside
|
| +} |
| +</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> |
|
mstensho (USE GERRIT)
2016/04/04 21:05:38
A pass condition would be nice.
|
| +<div style="-webkit-columns:3; column-fill:auto; height:210px; background:yellow;"> |
|
mstensho (USE GERRIT)
2016/04/04 21:05:38
You can use unprefixed column properties now.
|
| +<table> |
|
mstensho (USE GERRIT)
2016/04/04 21:05:38
Indentation.
|
| + <tr><td>Text Text Text Text Text Text Text Text Text Text Text Text Text Text</td></tr> |
| +</table> |
| +</div> |
| + |