tor-browser

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

491547-1.xhtml (465B)


      1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
      2 
      3 <box id="a" style="display: list-item;">
      4 &amp;m&amp;m
      5 <box id="b"/>
      6 </box>
      7 
      8 <style xmlns="http://www.w3.org/1999/xhtml">
      9 #a::first-letter {float: right; }
     10 </style>
     11 
     12 <script xmlns="http://www.w3.org/1999/xhtml">
     13 function doe() {
     14 document.getElementById('a').style.direction = 'rtl';
     15 document.getElementById('b').style.direction = 'ltr';
     16 }
     17 setTimeout(doe, 100);
     18 </script>
     19 
     20 </window>