summaryrefslogtreecommitdiffstats
path: root/dom/xul/crashtests/431906-1-inner.xhtml
blob: 367f621b2f2f373439bac6f74af705035ca4b6ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html xmlns="http://www.w3.org/1999/xhtml">
<colgroup id="a" command="a">
<box xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<box id="a" command="a"/>
<box id="a" command="a"/>
</box>
</colgroup>
<script><![CDATA[
function doe(){
document.getElementsByTagName('*')[1].setAttribute('id','');
document.getElementsByTagName('*')[1].setAttribute('xmlns', '');
document.getElementsByTagName('*')[3].setAttribute('id','');

document.getElementsByTagName('*')[4].removeAttribute('xmlns');
document.getElementsByTagName('*')[4].setAttribute('width', '1px');
}
setTimeout(doe,100);
]]></script>
</html>