text-stroke-width-ref.html (569B)
1 <!DOCTYPE html> 2 <title>CSS zoom applies to -webkit-text-stroke-width 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(3rem * var(--scale)); 12 -webkit-text-stroke-width: calc(2px * var(--scale)); 13 color: cornflowerblue; 14 -webkit-text-stroke-color: hotpink; 15 } 16 .zoom { 17 --scale: 2; 18 } 19 </style> 20 21 <div>unzoomed</div> 22 <div class="zoom">zoomed</div> 23 <div class="zoom">zoomed inherited</div>