Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / circle-move-invalidation.svg
blobeb24fcd19bd897e1d643cb6c09147136230196c7
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <script src="../../fast/repaint/resources/text-based-repaint.js"/>
4 <title>Bug 22660</title>
5 <script>
6 function repaintTest() {
7 var circle = document.getElementById('c1');
8 circle.setAttribute('cx', '300');
9 circle.setAttribute('cy', '300');
11 </script>
12 </head>
13 <body onload="runRepaintAndPixelTest()">
14 <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 400 400" style="width:300px; height:300px; border: 1px solid black;">
15 <circle id="c1" cx="100" cy="100" r="50" style="fill:red" />
16 </svg>
17 <br/>
18 <p/>
19 <p/>
20 The circle should not be (partially or fully)visible at the original position after moving it.
21 </body>
22 </html>