tor-browser

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

line-height.html (640B)


      1 <!DOCTYPE html>
      2 <title>CSS zoom applies to line-height when specified and inherited</title>
      3 <link rel="author" title="Chris Harrelson" href="mailto:chrishtr@chromium.org">
      4 <link rel="help" href="https://drafts.csswg.org/css-viewport/">
      5 <link rel="match" href="line-height-ref.html">
      6 <div style="line-height: 12px; font-size: 12px">
      7  Double-spaced<br>12px font text
      8 </div>
      9 
     10 <hr>
     11 
     12 <div style="line-height: 12px; font-size: 12px; zoom: 2">
     13  Double-spaced<br>12px font zoomed text
     14 </div>
     15 
     16 <hr>
     17 
     18 <div style="line-height: 12px; font-size: 12px">
     19  <div style="zoom:2">
     20    Double-spaced<br>12px font zoomed inherited text
     21  </div>
     22 </div>
     23 
     24 <hr>