tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

text-shadow-03.html (614B)


      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 and stroked text with stroke painting first">
      6 <link rel="match" href="text-shadow-02.html">
      7 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      8 <style>
      9  text {
     10    font: 15px Ahem;
     11    text-shadow: 0px 0px 5px green;
     12    fill: darkgreen;
     13    stroke: darkgreen;
     14    paint-order: stroke;
     15  }
     16 </style>
     17 <svg width="100" height="60">
     18  <text x="21" y="19">A</text>
     19 </svg>