1 <!-- Based on fast/repaint/inline-block-resize.html -->
4 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=
12885</title>
5 <style type=
"text/css">
8 <script src=
"resources/paint-invalidation-test.js" type=
"text/javascript"></script>
10 window
.expectedPaintInvalidationObjects
= [
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';
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>