tor-browser

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

file_sandbox_fail.js (188B)


      1 function ok(result, desc) {
      2  window.parent.postMessage({ ok: result, desc }, "*");
      3 }
      4 ok(
      5  false,
      6  "documents sandboxed with allow-scripts should NOT be able to run <script src=...>"
      7 );