tor-browser

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

dialog-requestclose-3-crash.html (419B)


      1 <!doctype html>
      2 <link rel="author" href="mailto:wpt@keithcirkel.co.uk" />
      3 <link rel="help" href="https://html.spec.whatwg.org/#dom-dialog-requestclose" />
      4 
      5 <!-- This test passes if it does not crash. -->
      6 
      7 <script>
      8  const doc = document.implementation.createHTMLDocument("");
      9  const dialog = doc.createElement("dialog");
     10  doc.body.append(dialog);
     11  dialog.setAttribute("open", "");
     12  dialog.requestClose();
     13 </script>