tor-browser

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

webkit-appearance-menulist-001.html (1184B)


      1 <!-- DO NOT EDIT THIS FILE.
      2 Edit the appearance-* file instead and then run:
      3    ./tools/appearance-build-webkit-reftests.py
      4 -->
      5 <!DOCTYPE html>
      6 <meta charset="utf-8">
      7 <title>CSS Basic User Interface Test: -webkit-appearance: menulist</title>
      8 <link rel="help" href="https://drafts.csswg.org/css-ui-4/#appearance-switching">
      9 <meta name="assert" content="menulist is an alias to auto.">
     10 <meta name="fuzzy" content="totalPixels=0-2;maxDifference=0-1">
     11 <link rel="match" href="appearance-auto-ref.html">
     12 <style>
     13 #container { width: 500px; }
     14 #container > * { -webkit-appearance: none; -webkit-appearance: menulist; }
     15 </style>
     16 <div id="container">
     17 <a>a</a>
     18 <button>button</button>
     19 <input type="text" value="input-text">
     20 <input type="search" value="input-search">
     21 <textarea>textarea</textarea>
     22 <input type="button" value="input-button">
     23 <input type="submit" value="input-submit">
     24 <input type="reset" value="input-reset">
     25 <input type="range">
     26 <input type="checkbox">
     27 <input type="radio">
     28 <input type="color">
     29 <select><option>select</option></select>
     30 <select multiple><option>select-multiple</option></select>
     31 <meter value=0.5></meter>
     32 <progress value=0.5></progress>
     33 </div>