1 <!-- Based on fast/repaint/subtree-root-clip.html -->
5 <script src=
"resources/paint-invalidation-test.js"></script>
7 window
.expectedPaintInvalidationObjects
= [
8 "LayoutBlockFlow (floating) DIV",
9 "LayoutBlockFlow DIV id='inner'",
11 function paintInvalidationTest()
13 document
.getElementById("inner").style
.width
= "0";
17 <body onload=
"runPaintInvalidationTest()">
18 <div style=
"float: left; overflow: hidden; width: 100px; height: 100px; background-color: green;">
19 <div id=
"inner" style=
"width: 100px; height: 100px; background-color: red;"></div>