haikuwebkit/LayoutTests/svg/repaint/remove-outline-property-on-...

17 lines
436 B
HTML

<!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>