blob: bfdefb863d98d0028e2a62fe29582688dcd83239 [file] [log] [blame]
<!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>