Bug 460926 A11y hierachy is broken on Ubuntu 8.10 (GNOME 2.24), r=Evan.Yan sr=roc
[wine-gecko.git] / content / xul / document / crashtests / 428951-1.xul
blob061ff55c2b407911bedbee94507f0a70ff1bc57e
1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:mathml="http://www.w3.org/1998/Math/MathML">
2 <box>
3   <box style="background: -moz-initial;" id="f">
4     <box style="margin-top: -9999999px;"/>
5   </box>
6   <mathml:divergence>
7     <box/>
8   </mathml:divergence>
9   <mathml:moment command="f"/>
10 </box>
12 <script id="script" xmlns="http://www.w3.org/1999/xhtml"><![CDATA[
13 function init() {
14     var f = document.getElementsByTagName('mathml:divergence')[0];
15     window.addEventListener('DOMAttrModified',function() { f.parentNode.removeChild(f);}, true);
16     var x=document.getElementsByTagName('mathml:moment')[0];
17     x.parentNode.removeChild(x);
19 window.addEventListener("load", init, false);
20 ]]></script>
21 </window>