tor-browser

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

doc_inspector_search.html (1206B)


      1 <!doctype html>
      2 <html lang="en" id="root">
      3 <head>
      4  <meta charset="utf-8">
      5  <title>Inspector Search Box Test</title>
      6 </head>
      7 <body>
      8 
      9  <!-- This is a list of 0 h1 elements -->
     10 
     11  <!-- This is a list of 2 div elements -->
     12  <div id="d1">Hello, I'm a div</div>
     13  <div id="d2" class="c1">Hello, I'm another div</div>
     14 
     15  <!-- This is a list of 2 span elements -->
     16  <span id="s1">Hello, I'm a span</span>
     17  <span class="c1" id="s2">And I am also a span but I contain more text than the other one.</span>
     18 
     19  <!-- This is a collection of various things that match only once -->
     20  <p class="c1" id="p1">.someclass</p>
     21  <p id="p2">#someid</p>
     22  <button id="b1" disabled>button[disabled]</button>
     23  <p id="p3" class="c2"><strong>p&gt;strong</strong></p>
     24 
     25  <!-- Check that matches inside the node and its text node for inlineTextNode only report a single match -->
     26  <section data-search="yo">yo yo yo</section>
     27  <!-- if the text node has more than 50 chars (see WalkerActor DEFAULT_VALUE_SUMMARY_LENGTH)
     28       it's text child won't be inlined -->
     29  <section data-search="blah">
     30    blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah
     31  </section>
     32 </body>
     33 
     34 </body>
     35 </html>