tor-browser

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

document-adopt-base-url.html (465B)


      1 <!DOCTYPE HTML>
      2 <meta charset="utf-8">
      3 <title>Document base URL adopted img test</title>
      4 <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-img-element" />
      5 <link rel="match" href="document-base-url-ref.html">
      6 <base href="resources/" />
      7 <iframe></iframe>
      8 <script>
      9  var iframe = document.querySelector('iframe');
     10  var i = iframe.contentDocument.createElement('img');
     11  i.src = "cat.jpg";
     12  document.body.appendChild(i);
     13  iframe.remove();
     14 </script>