summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-radius/invalidate-1a.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/border-radius/invalidate-1a.html')
-rw-r--r--layout/reftests/border-radius/invalidate-1a.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/layout/reftests/border-radius/invalidate-1a.html b/layout/reftests/border-radius/invalidate-1a.html
new file mode 100644
index 0000000000..0d5ce323be
--- /dev/null
+++ b/layout/reftests/border-radius/invalidate-1a.html
@@ -0,0 +1,15 @@
+<!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);
+</script>
+</body>
+</html>