-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcropping.xul
63 lines (45 loc) · 1.99 KB
/
cropping.xul
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<window title="XUL Cropping"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/x-javascript"
src="chrome://global/content/dialogOverlay.js" />
<description><html:h1>XUL Cropping</html:h1></description>
<vbox flex="1" style="overflow: auto">
<groupbox>
<caption label="start" />
<description
crop="start"
value="This is a one-line description.
It will be cropped on the left if there isn't enough room for it." />
<button crop="start"
label="Now is the time for all good men to come to the aid of their party. Mary had a little lamb whose fleece was white as snow." />
<label crop="start"
value="This is a one-line label.
It will be cropped on the left if there isn't enough room for it." />
</groupbox>
<groupbox>
<caption label="end" />
<description crop="end"
value="While this one-line description
will be cropped on the right if there isn't enough room for it." />
<button crop="end"
label="Now is the time for all good men to come to the aid of their party. Mary had a little lamb whose fleece was white as snow." />
<label crop="end"
value="While this one-line label
will be cropped on the right if there isn't enough room for it." />
</groupbox>
<groupbox>
<caption label="center" />
<description crop="center"
value="And this one-line description,
if there isn't enough room for it, will be cropped in the middle." />
<button crop="center"
label="Now is the time for all good men to come to the aid of their party. Mary had a little lamb whose fleece was white as snow." />
<label crop="center"
value="And this one-line label,
if there isn't enough room for it, will be cropped in the middle." />
</groupbox>
</vbox>
</window>