text-shadow-01.html (589B)
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 filled text"> 6 <link rel="match" href="text-shadow-ref.html"> 7 <meta name="fuzzy" content="0-200;0-400"/> 8 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 9 <style> 10 text { 11 font: 16px Ahem; 12 text-shadow: 0px 0px 5px green; 13 fill: darkgreen; 14 stroke: none; 15 } 16 </style> 17 <svg width="100" height="60"> 18 <text x="20" y="20">A</text> 19 </svg>