| OLD | NEW |
| 1 <!-- Based on fast/repaint/box-sizing-border-keeping-size.html --> | 1 <!-- Based on fast/repaint/box-sizing-border-keeping-size.html --> |
| 2 <!DOCTYPE HTML> | 2 <!DOCTYPE HTML> |
| 3 <script src="resources/paint-invalidation-test.js"></script> | 3 <script src="resources/paint-invalidation-test.js"></script> |
| 4 <script> | 4 <script> |
| 5 window.expectedPaintInvalidationObjects = [ | |
| 6 "LayoutBlockFlow (positioned) DIV id='target1' class='content-box'", | |
| 7 "LayoutBlockFlow (positioned) DIV id='target2' class='border-box'", | |
| 8 ]; | |
| 9 function paintInvalidationTest() | 5 function paintInvalidationTest() |
| 10 { | 6 { |
| 11 document.getElementById('target1').className = 'content-box'; | 7 document.getElementById('target1').className = 'content-box'; |
| 12 document.getElementById('target2').className = 'border-box'; | 8 document.getElementById('target2').className = 'border-box'; |
| 13 } | 9 } |
| 14 window.onload = runPaintInvalidationTest; | 10 window.onload = runPaintInvalidationTest; |
| 15 </script> | 11 </script> |
| 16 <style> | 12 <style> |
| 17 body { | 13 body { |
| 18 margin: 0; | 14 margin: 0; |
| 19 } | 15 } |
| 20 div { | 16 div { |
| 21 position: absolute; | 17 position: absolute; |
| 22 background-color: green; | 18 background-color: green; |
| 23 } | 19 } |
| 24 .border-box { | 20 .border-box { |
| 25 width: 100px; | 21 width: 100px; |
| 26 height: 100px; | 22 height: 100px; |
| 27 box-sizing: border-box; | 23 box-sizing: border-box; |
| 28 } | 24 } |
| 29 .content-box { | 25 .content-box { |
| 30 width: 60px; | 26 width: 60px; |
| 31 height: 60px; | 27 height: 60px; |
| 32 box-sizing: content-box; | 28 box-sizing: content-box; |
| 33 border: blue solid 20px; | 29 border: blue solid 20px; |
| 34 } | 30 } |
| 35 </style> | 31 </style> |
| 36 <div id="target1" class="border-box" style="top: 0px"></div> | 32 <div id="target1" class="border-box" style="top: 0px"></div> |
| 37 <div id="target2" class="content-box" style="top: 200px"></div> | 33 <div id="target2" class="content-box" style="top: 200px"></div> |
| OLD | NEW |