summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/540760.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'layout/base/crashtests/540760.xhtml')
-rw-r--r--layout/base/crashtests/540760.xhtml18
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/base/crashtests/540760.xhtml b/layout/base/crashtests/540760.xhtml
new file mode 100644
index 0000000000..b0e857ec9f
--- /dev/null
+++ b/layout/base/crashtests/540760.xhtml
@@ -0,0 +1,18 @@
+<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
+
+<script>
+
+function boom()
+{
+ var a = document.getElementById("a");
+ while (a.firstChild)
+ a.removeChild(a.firstChild);
+}
+
+window.addEventListener("load", boom, false);
+
+</script>
+
+<menulist id="a" sizetopopup="pref"><menupopup/><menupopup/></menulist>
+
+</window>