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