Bug 1642261 - Part 2: Add telemetry for -moz-appearance usage. r=emilio
[gecko.git] / dom / base / test / file_use_counter_appearance.html
blobe3be60c485541a4c0e1b363ece1da72285e6dfa5
1 <!DOCTYPE html>
3 <!-- a value set by the UA sheet -->
4 <button>a button</button>
6 <!-- a value set on a widget that normally has that appearance -->
7 <input style="-moz-appearance: textfield;">
9 <!-- a value set on a widget that doesn't normally have that appearance -->
10 <input type="radio" style="-moz-appearance: checkbox;">
12 <!-- a value set on a non-widget -->
13 <div style="-moz-appearance: menulist-button;"></div>
15 <!-- a standard value set on a widget that normally has that appearance, cascading over some other value -->
16 <style>
17 textarea { -moz-appearance: meter; }
18 textarea { -moz-appearance: textarea; }
19 </style>
20 <textarea></textarea>
22 <!-- a non-standard value set on a widget that normally has that appearance, cascading over some other value -->
23 <style>
24 input[type=range] { -moz-appearance: none; }
25 input[type=range] { -moz-appearance: range; }
26 </style>
27 <input type="range">
29 <!-- a non-standard value set by UA sheets, which we want to track for cascading over some other value -->
30 <input type="number">