summaryrefslogtreecommitdiffstats
path: root/layout/xul/crashtests/391974-1-inner.xhtml
blob: f13aa2110fb3aa5454e5f60e1b51de94069a705d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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>