tor-browser

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

input-file-print-ref.html (491B)


      1 <!DOCTYPE html>
      2 <head>
      3  <meta charset="utf-8">
      4  <title>Reference case</title>
      5  <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=133984">
      6  <style>
      7    input[type="file"] { height: auto; }
      8    .with-outline {
      9      outline: 2px solid teal;
     10    }
     11    .wrapper {
     12      border: 2px solid fuchsia;
     13    }
     14  </style>
     15 </head>
     16 <body>
     17  <input type="file">
     18  <br><br>
     19  <input type="file" class="with-outline">
     20  <br><br>
     21  <div class="wrapper"><input type="file"></div>
     22 </body>