<!DOCTYPE html> | |
<script> | |
if (window.testRunner) | |
testRunner.waitUntilDone(); | |
window.onload = function() { | |
requestAnimationFrame(function() { | |
document.querySelector("svg").style.removeProperty("background"); | |
if (window.testRunner) | |
window.testRunner.notifyDone(); | |
}); | |
}; | |
</script> | |
<div style="width: 100px; height: 100px; background: green"> | |
<svg style="background: red" width="100" height="100"></svg> | |
</div> |