| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="resources/text-based-repaint.js"></script> | 2 <script src="resources/text-based-repaint.js"></script> |
| 3 <script> | 3 <script> |
| 4 function repaintTest() { | 4 function repaintTest() { |
| 5 document.getElementById('block').style.left = '200px'; | 5 document.getElementById('block').style.left = '200px'; |
| 6 } | 6 } |
| 7 onload = runRepaintAndPixelTest; | 7 onload = runRepaintAndPixelTest; |
| 8 </script> | 8 </script> |
| 9 Tests paint invalidation of focus ring of an inline when a block content of the
inline moves. | 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. | 10 Passes if the focus ring encloses the moved green rectangle. |
| 11 <div style="position: absolute; top: 200px"> | 11 <div style="position: absolute; top: 200px"> |
| 12 <span style="outline: auto"> | 12 <span style="outline: auto"> |
| 13 <div id="block" style="position: relative; width: 100px; height: 100px; back
ground-color: green"></div> | 13 <div id="block" style="position: relative; width: 100px; height: 100px; back
ground-color: green"></div> |
| 14 </span> | 14 </span> |
| 15 </div> | 15 </div> |
| OLD | NEW |