1 <!-- Based on fast/repaint/overflow-show.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='overflowParent' class='absolute green'",
9 "LayoutBlockFlow (relative positioned) DIV class='relative green'",
11 function paintInvalidationTest()
13 document
.getElementById('overflowParent').style
.overflow
= "visible";
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>