tor-browser

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

img-dyn-1.html (521B)


      1 <!-- This test makes sure that we resize SVG content correctly after the
      2     container width is dynamically modified. -->
      3 <html class="reftest-wait">
      4 <head>
      5  <script>
      6    function go() {
      7      document.getElementById("wrapper").style.width = "200px";
      8      document.documentElement.removeAttribute("class");
      9    }
     10  </script>
     11 </head>
     12 <body onload="go()">
     13  <div id="wrapper"
     14       style="width: 100px; height: 200px; border: 2px dashed green">
     15    <img src="squaredCircle-viewBox-noSize.svg">
     16  </div>
     17 </body>
     18 </html>