diff options
Diffstat (limited to '')
-rw-r--r-- | dom/base/crashtests/605672-1.svg | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dom/base/crashtests/605672-1.svg b/dom/base/crashtests/605672-1.svg new file mode 100644 index 0000000000..b929b26691 --- /dev/null +++ b/dom/base/crashtests/605672-1.svg @@ -0,0 +1,17 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> + +<script> +function boom() +{ + var fr = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe"); + fr.src = "data:text/html,X"; + document.documentElement.appendChild(fr); + var docType = fr.contentDocument.implementation.createDocumentType(undefined, "", ""); + document.removeChild(document.documentElement); + document.appendChild(docType); +} + +window.addEventListener("load", boom, false); +</script> + +</svg> |