select-1-block-size-ref.html (967B)
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: Combobox block-size test</title> 9 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 10 <style> 11 html,body { 12 color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0; 13 } 14 15 select { -webkit-appearance: none; } 16 17 .big { font-size: 48pt; min-height: 40pt; } 18 .lh { line-height: 48pt; min-height: 40pt; } 19 20 .mask { position:fixed; left:20px; right:0; top:0; bottom:0; background: black; } 21 </style> 22 </head> 23 <body> 24 25 <!-- mask off differences on the right side --> 26 <div class="mask"></div> 27 28 <select><optgroup label="label"><option>option</option></select><br> 29 <select class="big"><optgroup label="label"><option>option</option></select><br> 30 <select class="lh"><optgroup label="label"><option>option</option></select><br> 31 32 </body> 33 </html>