native-appearance-disabled-for-value-unset.html (1366B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Native appearance disabled when appearance-disabling property has author-specified value unset</title> 5 <link rel="help" href="https://drafts.csswg.org/css-ui-4/#appearance-disabling-properties"> 6 <link rel="match" href="reference/native-appearance-disabled-for-value-unset-ref.html"> 7 <meta name="assert" content="Widgets with background and border set to `unset` should display the same as if they had background and border set to `initial`"> 8 <style> 9 body * { 10 display: block; 11 background: unset; 12 border: unset; 13 } 14 </style> 15 </head> 16 <body> 17 <h1>Test passes if the following widgets display the same with their background and border set to 'unset' as they do with background and border set to 'initial'</h1> 18 <button>Button</button> 19 <meter value='10' min='0' max='100'></meter> 20 <progress></progress> 21 <select></select> 22 <textarea></textarea> 23 <input type=button> 24 <input type=checkbox> 25 <input type=checkbox switch> 26 <input type=color> 27 <input type=date> 28 <input type=datetime-local> 29 <input type=file> 30 <input type=month> 31 <input type=number> 32 <input type=radio> 33 <input type=range> 34 <input type=search> 35 <input type=submit> 36 <input type=text> 37 <input type=time> 38 <input type=week> 39 </body> 40 </html>