text-shadow-02.html (658B)
1 <!DOCTYPE html> 2 <meta charset="utf-8" /> 3 <title>SVG Text Shadows</title> 4 <link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org"> 5 <meta name="assert" content="Verify correct painting of SVG shadows with stroked text"> 6 <link rel="match" href="text-shadow-ref.html"> 7 <meta name="fuzzy" content="0-75;0-400"/> 8 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 9 <style> 10 text { 11 font: 15px Ahem; 12 text-shadow: 0px 0px 5px green; 13 fill: none; 14 stroke: darkgreen; 15 } 16 </style> 17 <svg width="100" height="60"> 18 <text x="21" y="19">A</text> 19 <rect fill="darkgreen" x="22" y="8" width="14" height="14"></rect> 20 </svg>