text-stroke-scaling-02a.html (482B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <svg width="500" height="400"> 4 <text x="0" y="20" style="stroke: orange; stroke-width: 2px" 5 transform="scale(4)"> 6 This is some text 7 </text> 8 </svg> 9 <script> 10 onload = function() { 11 var obj = document.querySelector("text"); 12 window.w = obj.getBoundingClientRect().width; 13 obj.style.vectorEffect = "non-scaling-stroke"; 14 document.documentElement.className = ""; 15 } 16 </script> 17 </html>