tor-browser

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

Promise-incumbent-global-subsubframe.sub.html (326B)


      1 <!DOCTYPE html>
      2 <script>
      3  document.domain = "{{host}}";
      4  onmessage = function (e) {
      5    parent.postMessage(
      6      {
      7        actual: e.origin,
      8        expected: "{{location[scheme]}}://{{domains[www1]}}:{{ports[http][0]}}",
      9        reason: "Incumbent should have been the caller of then()"
     10      },
     11      "*");
     12  }
     13 </script>