tor-browser

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

text-decoration-propagation-01.html (667B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Test: text-decoration shouldn't propagate through 'svg' element</title>
      4 <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au">
      5 <link rel="help" href="http://www.w3.org/TR/css-text-decor-3/#line-decoration">
      6 <link rel="match" href="reference/text-decoration-propagation-01-ref.html">
      7 <meta name="assert" content="An outer 'svg' element is an atomic inline-axis element, so text decorations must not propagate through it.">
      8 <style>
      9 span { text-decoration: underline; }
     10 </style>
     11 <span>
     12  <svg width="400" height="100">
     13    <text x="10" y="30">This text must not be underlined.</text>
     14  </svg>
     15 </span>