tor-browser

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

select-option-display-none-inline-size-ref.html (521B)


      1 <!DOCTYPE HTML>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html><head>
      7  <meta charset="utf-8">
      8  <title>Reference: SELECT size with display:none OPTION</title>
      9 </head>
     10 <body>
     11 
     12 <select><option>option</select>
     13 <select style="-webkit-appearance: none"><option>option</select>
     14 <select style="-webkit-appearance: none; border: 1px solid black"><option>option</select>
     15 <select style="border: 1px solid black"><option>option</select>
     16 
     17 </body>
     18 </html>