diff options
Diffstat (limited to 'dom/html/crashtests/1550881-1.html')
-rw-r--r-- | dom/html/crashtests/1550881-1.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dom/html/crashtests/1550881-1.html b/dom/html/crashtests/1550881-1.html new file mode 100644 index 0000000000..b9d73df957 --- /dev/null +++ b/dom/html/crashtests/1550881-1.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<iframe srcdoc="<iframe></iframe>"></iframe> +<script> + onload = function() { + parent = frames[0]; + child = parent[0]; + child.onunload = function() { + parent.document.open(); + } + parent.document.open(); + parent.document.write("Hello"); + } +</script> |