diff options
Diffstat (limited to 'dom/html/crashtests/1704660.html')
-rw-r--r-- | dom/html/crashtests/1704660.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dom/html/crashtests/1704660.html b/dom/html/crashtests/1704660.html new file mode 100644 index 0000000000..01497975df --- /dev/null +++ b/dom/html/crashtests/1704660.html @@ -0,0 +1,17 @@ +<html> + <head> + <script> + function test() { + var ifr = document.getElementsByTagName("iframe")[0]; + var form = ifr.contentDocument.getElementsByTagName("form")[0]; + form.onsubmit = function() { + ifr.remove() + } + form.lastChild.click(); + } + </script> + </head> + <body onload="test()"> + <iframe srcdoc="<form><input name=f type=file><button></button></form>"></iframe> + </body> +</html> |