summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/816948-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/816948-1.html')
-rw-r--r--layout/reftests/bugs/816948-1.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/bugs/816948-1.html b/layout/reftests/bugs/816948-1.html
new file mode 100644
index 0000000000..e485e0cd8c
--- /dev/null
+++ b/layout/reftests/bugs/816948-1.html
@@ -0,0 +1,16 @@
+<html class="reftest-wait">
+<script>
+function boom() {
+ var ifr = document.getElementById("ifr");
+ ifr.style.display = "none";
+ // flush layout
+ document.documentElement.offsetLeft;
+ ifr.style.display = "block";
+ document.documentElement.removeAttribute("class");
+}
+</script>
+<body onload="boom();">
+<iframe id="ifr" src="816948-iframe.html">
+</iframe>
+</body>
+</html>