| Index: third_party/WebKit/LayoutTests/fast/pagination/break-in-paged-overflow.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/pagination/break-in-paged-overflow.html b/third_party/WebKit/LayoutTests/fast/pagination/break-in-paged-overflow.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7ed6f96021647d5ad2c71cd55a23d2d0f5001494
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/pagination/break-in-paged-overflow.html
|
| @@ -0,0 +1,53 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| + .container {
|
| + overflow: -webkit-paged-x;
|
| + float: left;
|
| + width: 5em;
|
| + height: 5em;
|
| + line-height: 2em;
|
| + margin: 2px;
|
| + border: 1px solid hotpink;
|
| + column-gap: 0; /* See crbug.com/460106 */
|
| + }
|
| +</style>
|
| +<p>There should be 7 boxes below. Each should contain the word "PASS"
|
| + once, and no "FAIL". Scrollbars may or may not be present. The
|
| + exact position of the word "PASS" will vary from box to box.</p>
|
| +<div class="container">
|
| + <div>PASS<br></div>
|
| + <div style="break-before:page;">FAIL</div>
|
| +</div>
|
| +<div class="container">
|
| + <div style="break-after:page;">PASS<br></div>
|
| + <div>FAIL</div>
|
| +</div>
|
| +<div class="container">
|
| + <div style="break-after:column;"><br></div> <!-- declaration should have no effect -->
|
| + <div>PASS</div>
|
| +</div>
|
| +<div class="container">
|
| + <div><br></div>
|
| + <div style="break-before:column;">PASS</div> <!-- declaration should have no effect -->
|
| +</div>
|
| +<div class="container">
|
| + PASS<br>
|
| + <div style="break-inside:avoid;">
|
| + FAIL<br>
|
| + FAIL<br>
|
| + </div>
|
| +</div>
|
| +<div class="container">
|
| + PASS<br>
|
| + <div style="break-inside:avoid-page;">
|
| + FAIL<br>
|
| + FAIL<br>
|
| + </div>
|
| +</div>
|
| +<div class="container">
|
| + <br>
|
| + <div style="break-inside:avoid-column;"> <!-- declaration should have no effect -->
|
| + PASS<br>
|
| + <br>
|
| + </div>
|
| +</div>
|
|
|