Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-form-element/form-action-in-inactive-document-crash.html - WPT Dashboard Interop Dashboard
<iframe id="i"></iframe>
<script>
var form = i.contentDocument.createElement("form");
i.remove();
form.action = "GET";
</script>