tor-browser

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

inspector-search-data.html (1239B)


      1 <html>
      2 <head>
      3  <meta charset="UTF-8">
      4  <title>Inspector Search Test Data</title>
      5  <style>
      6    #pseudo {
      7      display: block;
      8      margin: 0;
      9    }
     10    #pseudo:before {
     11      content: "before element";
     12    }
     13    #pseudo:after {
     14      content: "after element";
     15    }
     16  </style>
     17  <script type="text/javascript">
     18    "use strict";
     19 
     20    window.onload = function() {
     21      window.opener.postMessage("ready", "*");
     22    };
     23  </script>
     24 </head>
     25 <body>
     26  <!-- A comment
     27       spread across multiple lines -->
     28 
     29  <img width="100" height="100" src="large-image.jpg" />
     30 
     31  <h1 id="pseudo">Heading 1</h1>
     32  <p>A p tag with the text 'h1' inside of it.
     33    <strong>A strong h1 result</strong>
     34  </p>
     35 
     36  <div id="arrows" northwest="↖" northeast="↗" southeast="↘" southwest="↙">
     37    Unicode arrows
     38  </div>
     39 
     40  <h2>Heading 2</h2>
     41  <h2>Heading 2</h2>
     42  <h2>Heading 2</h2>
     43 
     44  <h3>Heading 3</h3>
     45  <h3>Heading 3</h3>
     46  <h3>Heading 3</h3>
     47 
     48  <h4>Heading 4</h4>
     49  <h4>Heading 4</h4>
     50  <h4>Heading 4</h4>
     51 
     52  <div class="💩" id="💩" 💩="💩"></div>
     53  <div id="with-hyphen" class="with-hyphen">hyphen</div>
     54 
     55  <aside>
     56    <article><p></p></article>
     57    <article><span></span></article>
     58    <article><p></p></article>
     59  </aside>
     60 </body>
     61 </html>