tor-browser

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

frame-no-frameset-crash.html (418B)


      1 <!doctype html>
      2 <link rel=help href="https://bugzilla.mozilla.org/show_bug.cgi?id=1917361">
      3 <script>
      4 document.addEventListener("DOMContentLoaded", () => {
      5  const a = new Document()
      6  const b = a.createElementNS("http://www.w3.org/1999/xhtml", "frame")
      7  document.documentElement.appendChild(b)
      8  try { b.contentWindow.history.replaceState(undefined, "𛵢") } catch (e) {}
      9  b.contentWindow.history.go()
     10 })
     11 </script>