chromium/third_party/blink/web_tests/paint/invalidation/svg/circle-move-invalidation.svg

<html xmlns="http://www.w3.org/1999/xhtml">  
<head>
<script src="../resources/text-based-repaint.js"/>
<title>Bug 22660</title>  
<script>  
function repaintTest() {
  var circle = document.getElementById('c1');
  circle.setAttribute('cx', '300');
  circle.setAttribute('cy', '300');
}
</script>  
</head>  
<body onload="runRepaintAndPixelTest()">
<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;">   
<circle id="c1" cx="100" cy="100" r="50" style="fill:red" />  
</svg>
<br/>
<p/>
<p/>
The circle should not be (partially or fully)visible at the original position after moving it.
</body>
</html>