tor-browser

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

uninvertible-transform-and-script-queries.html (444B)


      1 <!DOCTYPE html>
      2 
      3 <link rel="help" href="https://github.com/servo/servo/issues/38848">
      4 
      5 <div style="transform: scale(0)">
      6    <img style="height: 200px; width: 200px; border: solid;" id="img">
      7    <div style="height: 200px; width: 200px; border: solid;" id="div"></div>
      8 </div>
      9 <script>
     10    div.getBoundingClientRect();
     11    div.getClientRects();
     12    img.getBoundingClientRect();
     13    img.getClientRects();
     14    img.height;
     15    img.width;
     16 </script>