tor-browser

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

1483649-1-ref.xhtml (723B)


      1 <?xml version="1.0"?>
      2 <!DOCTYPE window>
      3 
      4 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
      5 
      6 <style type="text/css" xmlns="http://www.w3.org/1999/xhtml"><![CDATA[
      7 #container {
      8  position: relative;
      9  left: 500px;
     10  display: inline;
     11 }
     12 
     13 #first {
     14  position: relative;
     15  top: 0px;
     16  left: 0px;
     17  width: 100px;
     18  height: 100px;
     19  transform: scaleX(-1);
     20  background: red;
     21 }
     22 
     23 #second {
     24  position: relative;
     25  top: 50px;
     26  left: -100px;
     27  width: 100px;
     28  height: 100px;
     29  overflow: hidden;
     30 }
     31 
     32 #transformed {
     33  width: 50px;
     34  height: 50px;
     35  transform: scaleX(-1)
     36 }
     37 ]]></style>
     38 
     39 <box id="container">
     40  <box id="first"></box>
     41  <box id="second">
     42    <image id="transformed"/>
     43  </box>
     44 </box>
     45 </window>