tor-browser

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

386642.xhtml (662B)


      1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
      2        title="Bug 386642 Crash [@ IsCanvasFrame] while opening context menu or changing styles">
      3 <toolbarbutton type="menu" id="a">
      4 <menupopup id="b"/>
      5 </toolbarbutton>
      6 
      7 <style xmlns="http://www.w3.org/1999/xhtml">
      8 .one image {
      9 display: -moz-box;
     10 }
     11 image{
     12 display: none;
     13 }
     14 
     15 </style>
     16 <script><![CDATA[
     17 var gg=0;
     18 function doe() {
     19  var a = document.getElementById('a');
     20  if (!a.hasAttribute('class')) {
     21    a.setAttribute('class', 'one');
     22  } else {
     23    a.removeAttribute('class');
     24  }
     25 document.getElementById('b').hidePopup();
     26 }
     27 
     28 doe();
     29 setInterval(doe, 200);
     30 ]]></script>
     31 </window>