tor-browser

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

autocomplete.html (419B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4  <title>testcase for autocomplete testing</title>
      5  <link rel="stylesheet" type="text/css" href="resources_inpage1.css"/>
      6  <style type="text/css">
      7  div {
      8    font-size: 4em;
      9  }
     10 
     11  div > span {
     12     text-decoration: underline;
     13  }
     14 
     15  div + button {
     16    border: 2px dotted red;
     17  }
     18  </style>
     19 </head>
     20 <body>
     21  <div>parent <span>child</span></div><button>sibling</button>
     22 </body>
     23 </html>