blob: 5cfe6c7e80f6012470714a3ae755273be87a8b34 [file] [log] [blame]
<html>
<head>
<script src="../../fast/repaint/resources/repaint.js" type="text/javascript"></script>
<script type="text/javascript">
function repaintTest() {
if (!window.testRunner)
return;
// The animation lasts 100ms. Wait 200ms for the repaint.
testRunner.waitUntilDone();
setTimeout(function() {
testRunner.notifyDone();
}, 200);
}
</script>
<style type="text/css" media="screen">
img {
margin: 10px;
}
</style>
</head>
<body onload="runRepaintTest()">
<p>Images should redraw correctly when SVG animation runs</p>
<img height="250px" width="350px" border="2" src="resources/animated-rect-same-image.svg"><br>
<img height="250px" width="350px" border="2" src="resources/animated-rect-same-image.svg">
</body>
</html>