1 <!-- Based on fast/repaint/box-sizing-border-keeping-size.html -->
3 <script src=
"resources/paint-invalidation-test.js"></script>
5 window
.expectedPaintInvalidationObjects
= [
6 "LayoutBlockFlow (positioned) DIV id='target1' class='content-box'",
7 "LayoutBlockFlow (positioned) DIV id='target2' class='border-box'",
9 function paintInvalidationTest()
11 document
.getElementById('target1').className
= 'content-box';
12 document
.getElementById('target2').className
= 'border-box';
14 window
.onload
= runPaintInvalidationTest
;
22 background-color: green;
27 box-sizing: border-box;
32 box-sizing: content-box;
33 border: blue solid
20px;
36 <div id=
"target1" class=
"border-box" style=
"top: 0px"></div>
37 <div id=
"target2" class=
"content-box" style=
"top: 200px"></div>