blob: 02c3114e61a8683769f8c349b1a4a0898285e3cd (
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
|
<?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="boom();">
<hbox style="display: none;">
<bindings xmlns="http://www.mozilla.org/xbl">
<binding id="x">
<content><listitem xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"/></content>
</binding>
</bindings>
</hbox>
<script type="text/javascript">
function boom()
{
document.getElementById("b").style.MozBinding = "url('#x')";
// Flush layout.
document.documentElement.boxObject.height;
document.getElementById("listbox").removeChild(document.getElementById("c"));
}
</script>
<listbox id="listbox"><listitem/><listitem id="b"/><listitem id="c"/></listbox>
</window>
|