22 <div>This test checks that moving a positioned element with positioned children invalidates correctly.
</div>
23 <div>The image below should be completely invalidated.
</div>
27 <img src=
"resources/apple.jpg">
32 <script src=
"resources/text-based-repaint.js"></script>
35 var elSlider
= document
.getElementById("list");
36 elSlider
.style
.left
= "590px";
42 function repaintTest() {
43 var elSlider
= document
.getElementById("list");
44 elSlider
.style
.left
= "690px";
47 window
.addEventListener("load", setUp
, false);