haikuwebkit/LayoutTests/svg/repaint/remove-border-property-on-r...

15 lines
403 B
HTML

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