blob: 981d540268d335a0dcbc5ac9210b7e61a2b3222a (
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
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait">
<script>
function boom()
{
document.getElementById("xxx").style.position = "fixed";
document.documentElement.removeAttribute("class");
}
window.addEventListener("load", function(){setTimeout(boom, 30)}, 0);
</script>
<hbox id="xxx" style="position: absolute;">
<label value="X" />
<menulist>
<menupopup>
<menuitem label="Y" />
</menupopup>
</menulist>
</hbox>
</window>
|