This commit is contained in:
Olli Pettay 2008-09-09 13:07:35 +03:00
Родитель cdbdb36ee4
Коммит aa6c716712
3 изменённых файлов: 22 добавлений и 2 удалений

Просмотреть файл

@ -0,0 +1,21 @@
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:mathml="http://www.w3.org/1998/Math/MathML">
<box>
<box style="background: -moz-initial;" id="f">
<box style="margin-top: -9999999px;"/>
</box>
<mathml:divergence>
<box/>
</mathml:divergence>
<mathml:moment command="f"/>
</box>
<script id="script" xmlns="http://www.w3.org/1999/xhtml"><![CDATA[
function init() {
var f = document.getElementsByTagName('mathml:divergence')[0];
window.addEventListener('DOMAttrModified',function() { f.parentNode.removeChild(f);}, true);
var x=document.getElementsByTagName('mathml:moment')[0];
x.parentNode.removeChild(x);
}
window.addEventListener("load", init, false);
]]></script>
</window>

Просмотреть файл

@ -1,2 +1,3 @@
load 326204-1.xul
load 344215-1.xul
load 428951-1.xul

Просмотреть файл

@ -855,8 +855,6 @@ nsXULDocument::RemoveBroadcastListenerFor(nsIDOMElement* aBroadcaster,
PL_DHashTableOperate(mBroadcasterMap, aBroadcaster,
PL_DHASH_REMOVE);
SynchronizeBroadcastListener(aBroadcaster, aListener, aAttr);
break;
}
}