https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 83be7773ed3e2df8c2f8625d11ec35358586e48c authored by Anne van Kesteren on 13 March 2018, 17:31:34 UTC
Improve HTMLAllCollection IDL
Tip revision: 83be777
association.window.js
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");
back to top