Source code
Revision control
Copy as Markdown
Other Tools
test(() => {
const form = document.createElement("form"),
input = document.createElement("input");
form.appendChild(input);
assert_equals(input.form, form);
}, "Ensure input and form get associated when not in a document");