tor-browser

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

476598-1b.html (427B)


      1 <!DOCTYPE HTML>
      2 <title>Test for incorrect inherited/aInherited use in transform-origin handling</title>
      3 <style type="text/css">
      4 
      5 p {
      6  transform-origin: inherit;
      7  transform: scale(2);
      8  height: 10px;
      9  width: 10px;
     10  background: green;
     11  margin: 50px;
     12 }
     13 
     14 </style>
     15 <div style="transform-origin: 10px 10px">
     16 <p style="font-size: 10px"></p>
     17 </div>
     18 <div style="transform-origin: 20px 20px">
     19 <p style="font-size: 20px"></p>
     20 </div>