tenfourfox/layout/reftests/border-radius/invalidate-1a.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

16 lines
375 B
HTML

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