https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 10c4433f448fa5a85cdbdcd8c5dc2765951297ae authored by Javier Fernandez on 22 December 2018, 22:34:40 UTC
[css-text] New value 'break-spaces' for the white-space property
Tip revision: 10c4433
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