summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/form-control-infrastructure/association.window.js
blob: 4d84e7d3f0b58c1db7c2a543eb76a9cd8ed542c9 (plain)
1
2
3
4
5
6
7
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");