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