mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 01:47:31 +09:00
21 lines
No EOL
509 B
XML
21 lines
No EOL
509 B
XML
<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;">
|
|
<menuitem sizetopopup="always">
|
|
<menupopup style="position: absolute;"/>
|
|
</menuitem>
|
|
|
|
<box style="position: fixed;">
|
|
<tree>
|
|
<treecol>
|
|
<treecol/>
|
|
</treecol>
|
|
</tree>
|
|
</box>
|
|
</box>
|
|
</window> |