summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/1324463.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dom/base/crashtests/1324463.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/dom/base/crashtests/1324463.html b/dom/base/crashtests/1324463.html
new file mode 100644
index 0000000000..5a6a0f4d14
--- /dev/null
+++ b/dom/base/crashtests/1324463.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+<script>
+addEventListener("DOMContentLoaded", function(){
+ let o_0 = document.createElement("span").attachShadow({ mode: "open" });
+ let o_1 = document.createElementNS("http://www.mozilla.org/xbl", "binding");
+ let o_2 = document.createElementNS("http://www.mozilla.org/xbl", "children");
+ let o_3 = document.createTextNode("");
+ o_0.appendChild(o_1);
+ o_1.appendChild(o_2);
+ o_2.appendChild(o_3);
+ o_2.removeChild(o_3);
+});
+</script>
+</html>