blob: ea9c0be8addcf2594a82a29dbbc4bb9935f5847c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script id="script" xmlns="http://www.w3.org/1999/xhtml">
function doe(){
document.getElementById('a').removeAttribute('style');
}
setTimeout(doe,100);
</script>
<box id="a" style="position: absolute; display: block;">
<menuitem sizetopopup="always">
<menupopup style="position: absolute; display: block;"/>
</menuitem>
<box style="position: fixed; display: block;">
<tree>
<treecol>
<treecol/>
</treecol>
</tree>
</box>
</box>
</window>
|