blob: 4d84e7d3f0b58c1db7c2a543eb76a9cd8ed542c9 [file] [log] [blame]
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");