tor-browser

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

text-indent-svg.html (524B)


      1 <!DOCTYPE html>
      2 <title>CSS zoom does not apply to text-indent on SVG primitives when specified and inherited</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-viewport/">
      4 <link rel="match" href="reference/text-indent-svg-ref.html">
      5 
      6 <style>
      7 .indent {
      8  text-indent: 1rem;
      9 }
     10 .zoom {
     11  zoom: 2;
     12 }
     13 </style>
     14 
     15 <svg width="150" height="30">
     16  <text class="indent" x="0" y="20">unzoomed</text>
     17 </svg>
     18 
     19 <div class="zoom">
     20  <svg width="150" height="30">
     21    <text class="indent" x="0" y="20">zoomed</text>
     22  </svg>
     23 </div>