tor-browser

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

iframe.html (831B)


      1 <!-- Any copyright is dedicated to the Public Domain.
      2     http://creativecommons.org/publicdomain/zero/1.0/ -->
      3 <!doctype html>
      4 
      5 <html>
      6  <head>
      7    <meta charset="utf-8"/>
      8    <title>Iframe v1</title>
      9  </head>
     10 
     11  <body>
     12    <!-- A simple inline script, that helps to cover breakable lines/columns -->
     13    <!-- Have them define first, so that we avoid shifting lines when adding new scripts later in the html -->
     14    <script>
     15      // Comment
     16      console.log('iframe breakable-line');
     17    </script>
     18 
     19    <!-- A second inline script, that helps cover bugs when having two distinct inline scripts -->
     20    <script>
     21      // Another comment
     22      console.log("second iframe inline script");
     23    </script>
     24 
     25    <!-- A script whose URL is loaded in many different ways -->
     26    <script src="same-url.sjs"></script>
     27  </body>
     28 
     29 </html>