Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / inline-block-resize.html
blob4e08cbb534e053eced7ead6bb6391740816ef888
1 <!-- Based on fast/repaint/inline-block-resize.html -->
2 <html>
3 <head>
4 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=12885</title>
5 <style type="text/css">
7 </style>
8 <script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
9 <script>
10 window.expectedPaintInvalidationObjects = [
11 "RootInlineBox",
12 "InlineBox",
13 "LayoutBlockFlow (positioned) DIV",
14 "LayoutBlockFlow DIV id='target'",
16 function paintInvalidationTest()
18 document.getElementById('target').style.width = '100px';
19 document.getElementById('target').style.height = '100px';
20 document.getElementById('target').style.marginTop = '-100px';
22 </script>
23 </head>
24 <body onload="runPaintInvalidationTest();">
25 <div style="position:absolute; height:100px; width:100px;background-color:red"></div>
26 <div style="padding-top:100px"></div>
27 <div style="position:absolute"><div id="target" style="display:inline-block; background-color:green"></div></div>
28 </div>
29 </body>
30 </html>