blob: 80b0b4f32348259a3b390a3b9acd82bfd6a5fec7 [file] [log] [blame]
<!DOCTYPE html>
<script src="../resources/text-based-repaint.js"></script>
<script>
window.testIsAsync = true;
window.onload = runRepaintAndPixelTest;
function repaintTest() {
setTimeout(function() {
requestAnimationFrame(function() {
document.querySelector('svg').style.outline = "10px solid green";
if (window.testRunner)
finishRepaintTest();
});
}, 0);
};
</script>
<svg width="100" height="100">
<rect width="100" height="100" fill="blue"/>
</svg>