summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/931464-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/931464-1.html')
-rw-r--r--layout/reftests/bugs/931464-1.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/bugs/931464-1.html b/layout/reftests/bugs/931464-1.html
new file mode 100644
index 0000000000..a2168ae544
--- /dev/null
+++ b/layout/reftests/bugs/931464-1.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<body>
+<fieldset id="f" style="overflow: auto;"></fieldset>
+<script>
+function boom()
+{
+ var f = document.getElementById("f");
+ var s = document.createElement("span");
+ s.textContent = "Hello Kitty";
+ f.appendChild(s);
+ document.documentElement.removeAttribute("class");
+}
+window.addEventListener("MozReftestInvalidate", boom);
+</script>
+</body>
+</html>