blob: ea3f2c01660de072da87159d5b224bd9701f2715 [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.removeProperty('outline');
if (window.testRunner)
finishRepaintTest();
});
}, 0);
};
</script>
<svg style="outline: 10px solid red" width="100" height="100">
<rect width="100" height="100" fill="green"/>
</svg>