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