tor-browser

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

text-indent.html (520B)


      1 <!DOCTYPE html>
      2 <title>CSS zoom applies to text-indent when specified and inherited</title>
      3 <link rel="author" title="Stefan Zager" href="mailto:szager@chromium.org">
      4 <link rel="help" href="https://drafts.csswg.org/css-viewport/">
      5 <link rel="match" href="reference/text-indent-ref.html">
      6 
      7 <style>
      8 .indent {
      9  text-indent: 1rem;
     10 }
     11 .zoom {
     12  zoom: 2;
     13 }
     14 </style>
     15 
     16 <div class="indent">unzoomed</div>
     17 <div class="zoom"><div class="indent">zoomed</div></div>
     18 <div class="indent"><div class="zoom">zoomed inherited</div></div>