summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-form-element/form-action-in-inactive-document-crash.html
blob: 8a3543fcbcf4a51b1a3e95a549c5b345fa39dcf3 (plain)
1
2
3
4
5
6
<iframe id="i"></iframe>
<script>
var form = i.contentDocument.createElement("form");
i.remove();
form.action = "GET";
</script>