blob: d7cfd615b5eec5c553e5c65a36ab8d8ce2c4cb44 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<?xml version="1.0"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>display test</title>
<bindings xmlns="http://www.mozilla.org/xbl"
xmlns:pp="prettyprint"
xmlns:html="http://www.w3.org/1999/xhtml">
<binding id="expander">
<content><pp:float>-</pp:float><children/></content>
</binding>
</bindings>
<style type="text/css">
<![CDATA[
@namespace pp url("prettyprint");
pp|expander-box,
pp|pre-content {
display: block;
}
pp|expander-box[collapsed] > pp|float,
pp|expander-box[collapsed] > pp|pre-content {
display: inline;
float: none;
}
pp|expander-box[xbl] {
-moz-binding: url(#expander);
}
pp|float {
float: left;
}
]]></style>
<script>
<![CDATA[
var target;
function onLoad() {
var res = document.evaluate("descendant::pp:expander-box",
document.documentElement,
function(aPref){return "prettyprint";},
0, null);
target = res.iterateNext();
toggle();
}
function toggle() {
target.setAttribute("collapsed", "collapsed");
}
]]></script>
</head>
<body onload="onLoad()">
<div>
<pp:content xmlns:pp="prettyprint">
<pp:expander-box xbl="yes">
<pp:pre-content>pre</pp:pre-content>
</pp:expander-box>
</pp:content>
</div>
</body>
</html>
|