tor-browser

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

663.html (459B)


      1 <!DOCTYPE html>
      2 <html>
      3   <head>
      4      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      5      <title>Text input with @title and :before and :after content rule</title>
      6         <style>
      7        label:before { content: "foo "; }
      8        label:after { content: " baz"; }
      9      </style>
     10   </head>
     11   <body>
     12      <form>
     13         <label for="test"><input id="test" type="file" name="test" title="bar"></label> 
     14      </form>
     15   </body>
     16 </html>