1
0
Fork 0
firefox/layout/reftests/border-radius/invalidate-1b.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
367 B
HTML

<!DOCTYPE HTML>
<html class="reftest-wait">
<body>
<div id="d" style="background:blue; border-radius:50px; width:100px; height:200px;">
</div>
<script>
function doTest() {
var d = document.getElementById("d");
d.style.width = "200px";
document.documentElement.className = "";
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>