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