1 <!-- Based on fast/repaint/reflection-invalidation-after-display.html -->
5 background-color: green;
14 -webkit-box-reflect: right
50px;
18 This test checks that we correctly invalidate reflection when they are removed.
19 There should be only one green box below.
21 <div class=
"green reflected box" id=
"box"></div>
22 <script src=
"resources/paint-invalidation-test.js"></script>
24 window
.expectedPaintInvalidationObjects
= [
25 "LayoutBlockFlow (positioned) DIV id='box' class='green box'",
26 "LayoutBlockFlow (positioned) DIV id='box' class='green box'",
28 function paintInvalidationTest() {
29 var box
= document
.getElementById('box');
30 box
.classList
.toggle('reflected');
32 window
.onload
= runPaintInvalidationTest
;