1 <html xmlns=
"http://www.w3.org/1999/xhtml">
3 <script src=
"../../fast/repaint/resources/text-based-repaint.js"/>
4 <title>Bug
22660</title>
6 function repaintTest() {
7 var circle = document.getElementById('c1');
8 circle.setAttribute('cx', '
300');
9 circle.setAttribute('cy', '
300');
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" />
20 The circle should not be (partially or fully)visible at the original position after moving it.