1 <!-- Based on fast/repaint/absolute-position-change-containing-block.html -->
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='container' class='fixed blue'",
9 "LayoutBlockFlow (positioned) DIV class='absolute green'",
10 "LayoutBlockFlow DIV id='container' class='fixed blue'",
11 "LayoutBlockFlow (positioned) DIV class='absolute green'",
12 "LayoutBlockFlow BODY",
13 "LayoutBlockFlow DIV id='container' class='fixed blue'",
14 "LayoutBlockFlow (positioned) DIV class='absolute green'",
16 function paintInvalidationTest()
18 document
.getElementById('container').style
.position
= 'static';
22 <body style=
"height:2000px;" onload=
"runPaintInvalidationTest()">
23 <!-- You should see 2 overlapping rectangles in the output: a green one (on top) and a blue one. -->
24 <div id=
"container" style=
"top: 5000px;" class=
"fixed blue"><div style=
"top:100px; left:100px;" class=
"absolute green"></div></div>