blob: 42b115a1b8d2d5dc066af2c5fd615910fb1c702d [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('background');
if (window.testRunner)
finishRepaintTest();
});
}, 0);
};
</script>
<div style="width: 100px; height: 100px; background: green">
<svg style="background: red" width="100" height="100"></svg>
</div>