Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / overflow-show.html
blob0da3f70f60032ff09e98b32e33218995fd086f23
1 <!-- Based on fast/repaint/overflow-show.html -->
2 <html>
3 <head>
4 <link rel="stylesheet" href="../../../fast/repaint/resources/default.css">
5 <script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
6 <script type="text/javascript">
7 window.expectedPaintInvalidationObjects = [
8 "LayoutBlockFlow (positioned) DIV id='overflowParent' class='absolute green'",
9 "LayoutBlockFlow (relative positioned) DIV class='relative green'",
11 function paintInvalidationTest()
13 document.getElementById('overflowParent').style.overflow = "visible";
15 </script>
16 </head>
17 <body style="height:2000px;" onload="runPaintInvalidationTest()">
18 <!-- You should see 2 green rectangle sharing one corner in the output. -->
19 <div id="overflowParent" style="overflow: hidden" class="absolute green"><div style="top:100px; left:100px;" class="relative green"></div></div>
20 </body>
21 </html>