2 <script src=
"resources/text-based-repaint.js"></script>
4 function repaintTest() {
5 document
.getElementById('block').style
.left
= '200px';
7 onload
= runRepaintTest
;
9 Tests paint invalidation of focus ring of an inline when a block content of the inline moves.
10 Passes if the focus ring encloses the moved green rectangle.
11 <div style=
"position: absolute; top: 200px">
12 <span style=
"outline: auto">
13 <div id=
"block" style=
"position: relative; width: 100px; height: 100px; background-color: green"></div>