tor-browser

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

throw-function.js (197B)


      1 function throw_function() {
      2  throw new Error("an error");
      3 }
      4 
      5 function load_image() {
      6  let img = document.createElement('img');
      7  document.body.append(img);
      8  img.src = "/xhr/resources/img.jpg"
      9 }