Status: FAIL | Duration: 13ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/svg/painting/reftests/text-shadow-02.html
<!DOCTYPE html> <meta charset="utf-8" /> <title>SVG Text Shadows</title> <link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org"> <meta name="assert" content="Verify correct painting of SVG shadows with stroked text"> <link rel="match" href="text-shadow-ref.html"> <meta name="fuzzy" content="0-75;0-400"/> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> <style> text { font: 15px Ahem; text-shadow: 0px 0px 5px green; fill: none; stroke: darkgreen; } </style> <svg width="100" height="60"> <text x="21" y="19">A</text> <rect fill="darkgreen" x="22" y="8" width="14" height="14"></rect> </svg>
/svg/painting/reftests/text-shadow-ref.html
<!DOCTYPE html> <meta charset="utf-8" /> <title>SVG Text Shadows - ref</title> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> <style> div { font: 16px Ahem; text-shadow: 0px 0px 5px green; color: darkgreen; margin-left: 21px; margin-top: 15px; } </style> <div>A</div>