native-appearance-disabled-for-value-unset-ref.html (1290B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Native appearance disabled when appearance-disabling property has author-specified value unset (reference)</title> 5 <link rel="help" href="https://drafts.csswg.org/css-ui-4/#appearance-disabling-properties"> 6 <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`"> 7 <style> 8 body * { 9 display: block; 10 background: initial; 11 border: initial; 12 } 13 </style> 14 </head> 15 <body> 16 <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> 17 <button>Button</button> 18 <meter value='10' min='0' max='100'></meter> 19 <progress></progress> 20 <select></select> 21 <textarea></textarea> 22 <input type=button> 23 <input type=checkbox> 24 <input type=checkbox switch> 25 <input type=color> 26 <input type=date> 27 <input type=datetime-local> 28 <input type=file> 29 <input type=month> 30 <input type=number> 31 <input type=radio> 32 <input type=range> 33 <input type=search> 34 <input type=submit> 35 <input type=text> 36 <input type=time> 37 <input type=week> 38 </body> 39 </html>