| OLD | NEW |
| 1 <!-- Based on fast/repaint/box-sizing-padding-keeping-size.html --> | 1 <!-- Based on fast/repaint/box-sizing-padding-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 ]; | |
| 7 function paintInvalidationTest() | 5 function paintInvalidationTest() |
| 8 { | 6 { |
| 9 document.getElementById('target1').className = 'content-box'; | 7 document.getElementById('target1').className = 'content-box'; |
| 10 document.getElementById('target2').className = 'border-box'; | 8 document.getElementById('target2').className = 'border-box'; |
| 11 } | 9 } |
| 12 window.onload = runPaintInvalidationTest; | 10 window.onload = runPaintInvalidationTest; |
| 13 </script> | 11 </script> |
| 14 <style> | 12 <style> |
| 15 body { | 13 body { |
| 16 margin: 0; | 14 margin: 0; |
| 17 } | 15 } |
| 18 div { | 16 div { |
| 19 position: absolute; | 17 position: absolute; |
| 20 background-color: green; | 18 background-color: green; |
| 21 } | 19 } |
| 22 .border-box { | 20 .border-box { |
| 23 width: 100px; | 21 width: 100px; |
| 24 height: 100px; | 22 height: 100px; |
| 25 box-sizing: border-box; | 23 box-sizing: border-box; |
| 26 } | 24 } |
| 27 .content-box { | 25 .content-box { |
| 28 width: 60px; | 26 width: 60px; |
| 29 height: 60px; | 27 height: 60px; |
| 30 box-sizing: content-box; | 28 box-sizing: content-box; |
| 31 padding: 20px; | 29 padding: 20px; |
| 32 } | 30 } |
| 33 </style> | 31 </style> |
| 34 <div id="target1" class="border-box" style="top: 0px"></div> | 32 <div id="target1" class="border-box" style="top: 0px"></div> |
| 35 <div id="target2" class="content-box" style="top: 200px"></div> | 33 <div id="target2" class="content-box" style="top: 200px"></div> |
| OLD | NEW |