| Index: LayoutTests/paint/invalidation/spv2/multicol-with-block.html
|
| diff --git a/LayoutTests/paint/invalidation/spv2/multicol-with-block.html b/LayoutTests/paint/invalidation/spv2/multicol-with-block.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..61173d87bf86cbd8e2fabfca16e052e39b7cc3b7
|
| --- /dev/null
|
| +++ b/LayoutTests/paint/invalidation/spv2/multicol-with-block.html
|
| @@ -0,0 +1,22 @@
|
| +<!-- Based on fast/repaint/multicol-with-block.html -->
|
| +<!DOCTYPE html>
|
| +<script src="resources/paint-invalidation-test.js"></script>
|
| +<script>
|
| + onload = runPaintInvalidationTest;
|
| + window.expectedPaintInvalidationObjects = [
|
| + "LayoutBlockFlow DIV id='target'",
|
| + "LayoutText #text",
|
| + "InlineTextBox 'PASS'",
|
| + ];
|
| + function paintInvalidationTest() {
|
| + var target = document.getElementById('target');
|
| + target.style.visibility = 'visible';
|
| + }
|
| +</script>
|
| +<div style="-webkit-columns:4; -webkit-column-gap:10px; column-fill:auto; width:630px; height:20px; color:green;">
|
| + <br>
|
| + <br>
|
| + <br>
|
| + <div id="target" style="visibility:hidden;">PASS</div>
|
| +</div>
|
| +<p>A green PASS should be seen above.</p>
|
|
|