tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

428951-1.xhtml (706B)


      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>
     11 
     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.remove();}, true);
     16    var x=document.getElementsByTagName('mathml:moment')[0];
     17    x.remove();
     18 }
     19 window.addEventListener("load", init, false);
     20 ]]></script>
     21 </window>