tor-browser

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

select-1-block-size.html (1222B)


      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: Combobox block-size test</title>
      9  <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
     10  <link rel="match" href="select-1-block-size-ref.html">
     11  <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-select-element-2">
     12  <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1499578">
     13  <style>
     14 html,body {
     15  color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
     16 }
     17 
     18 select { -webkit-appearance: none; }
     19 
     20 optgroup { font-size: 32pt; }
     21 option { font-size: 24pt; }
     22 .big { font-size: 48pt; }
     23 .lh { line-height: 48pt; }
     24 
     25 .mask { position:fixed; left:20px; right:0; top:0; bottom:0; background: black; }
     26  </style>
     27 </head>
     28 <body>
     29 
     30 <!-- mask off differences on the right side -->
     31 <div class="mask"></div>
     32 
     33 <select><optgroup label="label"><option>option</option></select><br>
     34 <select class="big"><optgroup label="label"><option>option</option></select><br>
     35 <select class="lh"><optgroup label="label"><option>option</option></select><br>
     36 
     37 </body>
     38 </html>