summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scrolling/iframe-border-radius.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/scrolling/iframe-border-radius.html')
-rw-r--r--layout/reftests/scrolling/iframe-border-radius.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/scrolling/iframe-border-radius.html b/layout/reftests/scrolling/iframe-border-radius.html
new file mode 100644
index 0000000000..31aa8ed880
--- /dev/null
+++ b/layout/reftests/scrolling/iframe-border-radius.html
@@ -0,0 +1,20 @@
+<!DOCTYPE HTML>
+<html class="reftest-wait">
+<body>
+<iframe src="iframe-border-radius-frame.html" id="f" style="width:500px; height:500px; border-radius:100px; border:none;"></iframe>
+<script>
+var f = document.getElementById("f");
+var count = 0;
+function doTest() {
+ ++count;
+ f.contentWindow.scrollTo(0, count*20);
+ if (count == 4) {
+ document.documentElement.removeAttribute("class");
+ } else {
+ setTimeout(doTest, 20);
+ }
+}
+document.addEventListener("MozReftestInvalidate", doTest);
+</script>
+</body>
+</html>