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.html (616B)


      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>Test: SELECT size with display:none OPTION</title>
      9  <style>
     10 
     11 .none { display: none; }
     12 
     13  </style>
     14 </head>
     15 <body>
     16 
     17 <select><option class="none">option</select>
     18 <select style="-webkit-appearance: none"><option class="none">option</select>
     19 <select style="-webkit-appearance: none; border: 1px solid black"><option class="none">option</select>
     20 <select style="border: 1px solid black"><option class="none">option</select>
     21 
     22 </body>
     23 </html>