Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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: 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);
18 }
19 window.addEventListener("load", init, false);
20 ]]></script>
21 </window>