tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

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");