mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
19 lines
504 B
Text
19 lines
504 B
Text
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||
|
|
<menuitem>
|
||
|
|
<tooltip/>
|
||
|
|
<box/>
|
||
|
|
</menuitem>
|
||
|
|
|
||
|
|
<script xmlns="http://www.w3.org/1999/xhtml">
|
||
|
|
function doe2() {
|
||
|
|
document.getElementsByTagName('menuitem')[0].setAttribute('description', 'tetx');
|
||
|
|
}
|
||
|
|
|
||
|
|
function doe3() {
|
||
|
|
document.getElementsByTagName('menuitem')[0].removeAttribute('description');
|
||
|
|
document.getElementsByTagName('tooltip')[0].setAttribute('ordinal', '0');
|
||
|
|
}
|
||
|
|
setTimeout(doe2,150);
|
||
|
|
setTimeout(doe3,200);
|
||
|
|
</script>
|
||
|
|
</window>
|