1 <!-- Based on compositing/layer-creation/compositing-reason-removed.html -->
5 background-color: blue;
9 -webkit-backface-visibility: hidden;
13 <script src=
"resources/paint-invalidation-test.js"></script>
15 window
.expectedPaintInvalidationObjects
= [
17 function paintInvalidationTest() {
18 // Remove the div's only compositing reason. This should trigger a repaint.
19 document
.getElementById("square").style
.webkitBackfaceVisibility
= "visible";
21 runPaintInvalidationTest();
24 <div id=
"square"></div>