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/resetting-a-form/form-attribute-detach-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Crash found by DOM fuzzing</title>
<body>
<input form="form2">
<div id="div">
<form id="form2">
<button form="div"> </button>
</form>
</div>
<script>
document.createElement("ct").appendChild(div);
</script>
</body>