tor-browser

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

focus_window2.xhtml (588B)


      1 <?xml version="1.0"?>
      2 <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
      3 
      4 <window id="other-document"
      5        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
      6 
      7 <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
      8 
      9 <script>
     10 <![CDATA[
     11 
     12 function focused()
     13 {
     14  if (window.arguments)
     15    setTimeout(() => window.arguments[0](window, window.arguments[1]), 0);
     16 }
     17 
     18 SimpleTest.waitForFocus(focused);
     19 
     20 ]]>
     21 </script>
     22 
     23 <button id="other" label="OK"/>
     24 <input xmlns="http://www.w3.org/1999/xhtml" id="other-input" value="test"/>
     25 
     26 </window>