4 background-color: green;
13 -webkit-box-reflect: right
50px;
17 This test checks that we correctly invalidate reflection when they are removed.
18 There should be only one green box below.
20 <div class=
"green reflected box" id=
"box"></div>
21 <script src=
"resources/text-based-repaint.js"></script>
23 function repaintTest() {
24 var box
= document
.getElementById('box');
25 box
.classList
.toggle('reflected');
27 window
.onload
= runRepaintTest
;