1 <!-- Based on fast/repaint/border-radius-with-outline.html -->
3 <script src=
"resources/paint-invalidation-test.js"></script>
5 <!-- Should full repaint because the actual border radius changes
. -->
6 window
.expectedPaintInvalidationObjects
= [
7 "LayoutBlockFlow (positioned) DIV id='target'",
9 function paintInvalidationTest()
11 document
.getElementById('target').style
.width
= '200px';
13 window
.onload
= runPaintInvalidationTest
;
25 background-color: green;
27 outline:
5px solid green;
31 <div id=
"target"></div>