Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / multicol-with-block.html
blob61173d87bf86cbd8e2fabfca16e052e39b7cc3b7
1 <!-- Based on fast/repaint/multicol-with-block.html -->
2 <!DOCTYPE html>
3 <script src="resources/paint-invalidation-test.js"></script>
4 <script>
5 onload = runPaintInvalidationTest;
6 window.expectedPaintInvalidationObjects = [
7 "LayoutBlockFlow DIV id='target'",
8 "LayoutText #text",
9 "InlineTextBox 'PASS'",
11 function paintInvalidationTest() {
12 var target = document.getElementById('target');
13 target.style.visibility = 'visible';
15 </script>
16 <div style="-webkit-columns:4; -webkit-column-gap:10px; column-fill:auto; width:630px; height:20px; color:green;">
17 <br>
18 <br>
19 <br>
20 <div id="target" style="visibility:hidden;">PASS</div>
21 </div>
22 <p>A green PASS should be seen above.</p>