blob: 49b5f426d5fdb0e3b37acdc50f9c6df8751bc44d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<window title="Reference for mini, small and regular radio button sizes"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<style xmlns="http://www.w3.org/1999/xhtml">
vbox { height: 50px; }
box {
appearance: auto;
-moz-default-appearance: radio;
margin-left: 2px;
margin-top: 1px;
}
</style>
<vbox>
<hbox><box width="11" height="11"/></hbox>
</vbox>
<vbox>
<hbox><box width="13" height="13"/></hbox>
</vbox>
<vbox>
<hbox><box width="16" height="16"/></hbox>
</vbox>
<vbox>
<hbox selected="true"><box width="11" height="11"/></hbox>
</vbox>
<vbox>
<hbox selected="true"><box width="13" height="13"/></hbox>
</vbox>
<vbox>
<hbox selected="true"><box width="16" height="16"/></hbox>
</vbox>
</window>
|