tor-browser

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

text-shadow-ref.html (511B)


      1 <!DOCTYPE html>
      2 <title>CSS zoom applies to text-shadow 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 
      6 <style>
      7 body {
      8  --scale: 1;
      9 }
     10 div {
     11  font-size: calc(1rem * var(--scale));
     12  text-shadow: calc(5px * var(--scale)) calc(5px * var(--scale)) hotpink;
     13 }
     14 .zoom {
     15  --scale: 2;
     16 }
     17 
     18 </style>
     19 <div>unzoomed</div>
     20 <div class="zoom">zoomed</div>
     21 <div class="zoom">zoomed inherited</div>