tor-browser

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

test_bug398982-1.xhtml (1054B)


      1 <?xml version="1.0"?>
      2 <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
      3 <?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" type="text/css"?>
      4 <menuitem xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
      5          xmlns:html="http://www.w3.org/1999/xhtml"
      6          style="position: absolute; display: block;">
      7 <!--
      8 https://bugzilla.mozilla.org/show_bug.cgi?id=398982
      9 -->
     10  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
     11 
     12 <tooltip type="zzz">
     13 <treecols/>
     14 </tooltip>
     15 
     16 <script xmlns="http://www.w3.org/1999/xhtml" class="testbody" type="application/javascript">
     17 <![CDATA[
     18 function doe() {
     19  document.getElementsByTagName('menuitem')[0].removeAttribute('style');
     20  is(0, 0, "Test is successful if we get here without crashing");
     21  SimpleTest.finish();
     22 }
     23 function do_test() {
     24  setTimeout(doe, 200);
     25 }
     26 SimpleTest.waitForExplicitFinish();
     27 addLoadEvent(do_test);
     28 ]]>
     29 </script>
     30 <html:body></html:body> <!-- XXX SimpleTest.showReport() requires a html:body -->
     31 </menuitem>