appearance-auto-001.html (1012B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Basic User Interface Test: appearance: auto</title> 4 <link rel="help" href="https://drafts.csswg.org/css-ui-4/#appearance-switching"> 5 <meta name="assert" content="auto is supported."> 6 <meta name="fuzzy" content="totalPixels=0-2;maxDifference=0-1"> 7 <link rel="match" href="appearance-auto-ref.html"> 8 <style> 9 #container { width: 500px; } 10 #container > * { appearance: none; appearance: auto; } 11 </style> 12 <div id="container"> 13 <a>a</a> 14 <button>button</button> 15 <input type="text" value="input-text"> 16 <input type="search" value="input-search"> 17 <textarea>textarea</textarea> 18 <input type="button" value="input-button"> 19 <input type="submit" value="input-submit"> 20 <input type="reset" value="input-reset"> 21 <input type="range"> 22 <input type="checkbox"> 23 <input type="radio"> 24 <input type="color"> 25 <select><option>select</option></select> 26 <select multiple><option>select-multiple</option></select> 27 <meter value=0.5></meter> 28 <progress value=0.5></progress> 29 </div>