| OLD | NEW |
| 1 <!-- Based on fast/repaint/border-radius-without-border.html --> |
| 1 <!DOCTYPE html> | 2 <!DOCTYPE html> |
| 2 <script src="resources/text-based-repaint.js"></script> | 3 <script src="resources/paint-invalidation-test.js"></script> |
| 3 <script> | 4 <script> |
| 4 function repaintTest() | 5 window.expectedPaintInvalidationObjects = [ |
| 6 "LayoutBlockFlow (positioned) DIV id='target1'", |
| 7 "LayoutBlockFlow (positioned) DIV id='target2'", |
| 8 ]; |
| 9 function paintInvalidationTest() |
| 5 { | 10 { |
| 6 document.getElementById('target1').style.width = '200px'; | 11 document.getElementById('target1').style.width = '200px'; |
| 7 document.getElementById('target2').style.height = '200px'; | 12 document.getElementById('target2').style.height = '200px'; |
| 8 } | 13 } |
| 9 window.onload = runRepaintTest; | 14 window.onload = runPaintInvalidationTest; |
| 10 </script> | 15 </script> |
| 11 <style> | 16 <style> |
| 12 body { | 17 body { |
| 13 margin: 0; | 18 margin: 0; |
| 14 } | 19 } |
| 15 div { | 20 div { |
| 16 width: 100px; | 21 width: 100px; |
| 17 height: 100px; | 22 height: 100px; |
| 18 background-color: green; | 23 background-color: green; |
| 19 border-radius: 10px 15px 20px 25px; | 24 border-radius: 10px 15px 20px 25px; |
| 20 position: absolute; | 25 position: absolute; |
| 21 } | 26 } |
| 22 </style> | 27 </style> |
| 23 <div id="target1" style="top: 0px"></div> | 28 <div id="target1" style="top: 0px"></div> |
| 24 <div id="target2" style="top: 200px"></div> | 29 <div id="target2" style="top: 200px"></div> |
| OLD | NEW |