Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / focus-ring-on-continuation-move.html
blob29cbc4c5c46e29dfbaa35174a60b3f1f562fb44d
1 <!DOCTYPE html>
2 <script src="resources/text-based-repaint.js"></script>
3 <script>
4 function repaintTest() {
5 document.getElementById('block').style.left = '200px';
7 onload = runRepaintTest;
8 </script>
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>
14 </span>
15 </div>