blob: 497aa916105b0509b458d6ee2db6e5b8f5348f7c (
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
34
35
36
37
38
39
40
|
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml"
align="start">
<html:style>
.container {
border: 1px solid purple;
}
* { margin: 0 }
</html:style>
<hbox class="container">
<label value="label"/>
</hbox>
<hbox class="container">
<label value="label" style="padding: 5px"/>
</hbox>
<hbox class="container">
<label value="label" style="margin:8px"/>
</hbox>
<hbox class="container">
<menulist native="true">
</menulist>
</hbox>
<hbox class="container">
<menulist native="true" style="margin: 10px">
</menulist>
</hbox>
<hbox class="container">
<menulist native="true">
<menupopup>
<menuitem value="1" label="item"/>
</menupopup>
</menulist>
</hbox>
<hbox class="container">
<checkbox></checkbox>
</hbox>
</window>
|