2 <script src=
"resources/text-based-repaint.js"></script>
6 document
.querySelector('#outer').style
['outline-color'] ='green';
8 onload
= runRepaintTest
;
11 body { height:
200px; }
12 #container { position: absolute; }
13 p, #inner { height:
20px; }
14 #outer { outline:
2px solid red; }
17 This test is verifying that when the outline is modified on an element
18 that we correctly invalidate any continuations.
21 If this test passes, you should see a green border around the text contents.
25 <div id=
"inner">CONTENTS
</div>