tor-browser

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

reprojection-001-ref.html (643B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>Shadow DOM Test: Basic reprojection (reference)</title>
      6 <link rel="author" title="Anna Ogawa" href="mailto:anna.ogawa.0219@gmail.com">
      7 <link rel="author" title="Hayato Ito" href="mailto:hayato@google.com">
      8 <style>
      9 .pass { color: green; }
     10 </style>
     11 </head>
     12 <body>
     13 <p>You should see green text saying "Apple" and "Orange" below.</p>
     14 <div id="host">
     15  <div id="host2">
     16    <div>Hello a Shadow Root2.</div>
     17    <div>
     18      Hello a Shadow Root.
     19      <div class="pass">Apple.</div>
     20      <div class="pass">Orange.</div>
     21      <div>Banana.</div>
     22    </div>
     23   </div>
     24 </div>
     25 </body>
     26 </html>