association.window.js (239B)
1 test(() => { 2 const form = document.createElement("form"), 3 input = document.createElement("input"); 4 5 form.appendChild(input); 6 assert_equals(input.form, form); 7 }, "Ensure input and form get associated when not in a document");