blob: e59a3492e8d35143b8eca0269225f9944e4d9d5d (
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
|
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="loaded()"
class="reftest-wait">
<hbox style="display: none">
<bindings xmlns="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<binding id="foo">
<content>
<xul:hbox
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<xul:label>After</xul:label>
</xul:hbox>
<xul:hbox style="display:none">
<children/>
</xul:hbox>
</content>
<implementation>
<constructor>
var win = XPCNativeWrapper.unwrap(window);
win.setTimeout(function() {
win.document.documentElement.clientHeight;
win.setTimeout(win.finish, 0);
}, 0);
</constructor>
</implementation>
</binding>
</bindings>
</hbox>
<script>
function loaded()
{
setTimeout(function() {
document.documentElement.clientHeight;
setTimeout(boom, 0);
}, 0);
}
function boom()
{
document.documentElement.style.MozBinding = "url('#foo')";
}
function finish()
{
document.documentElement.removeAttribute("class");
}
</script>
<label>Before</label>
</window>
|