summaryrefslogtreecommitdiffstats
path: root/layout/reftests/native-theme/listbox-nonnative-when-styled-ref.html
blob: b70a26073106725c0d14061d22137e59188b64b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML>
<!-- these should make the select non-native -->
<body onload="dump('\nDEBUG-bug660226: ' + document.activeElement + '\n\n');">
<select size="3" style="-moz-appearance: none; border-width: 0"></select>
<select size="3" style="-moz-appearance: none; border-width: 1px"></select>
<select size="3" style="-moz-appearance: none; border-width: 2px"></select>
<select size="3" style="-moz-appearance: none; border-width: 3px"></select>
<select size="3" style="-moz-appearance: none; border-width: 4px"></select>
<select size="3" style="-moz-appearance: none; border-width: 5px"></select>
<select size="3" style="-moz-appearance: none; border-width: 6px"></select>
<select size="3" style="-moz-appearance: none; border-style: dotted"></select>
<select size="3" style="-moz-appearance: none; border-color: green"></select>
<select size="3" style="-moz-appearance: none; background-color: transparent"></select>
<select size="3" style="-moz-appearance: none; background-color: white"></select>

<!-- these should let it stay native -->
<select size="3" style="color: black"></select>
<select size="3" style="font-weight: normal"></select>
</body>