tor-browser

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

text-decoration-skip-ink-vertical-001.html (1062B)


      1 <!DOCTYPE html>
      2 <html>
      3    <head>
      4        <meta charset="utf-8">
      5        <title>Test case for text-decoration-skip-ink</title>
      6        <meta name="assert" content="text-decoration-skip-ink: descenders are skipped">
      7        <link rel="author" title="Charlie Marlow" href="cmarlow@mozilla.com">
      8        <link rel="author" title="Mozilla" href="https://www.mozilla.org">
      9        <link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#text-decoration-skip-ink-property">
     10        <link rel="mismatch" href="reference/text-decoration-skip-ink-vertical-001-notref.html">
     11        <link rel="mismatch" href="reference/text-decoration-skip-ink-vertical-001-offset-notref.html">
     12        <style>
     13           div{
     14                text-decoration: green underline;
     15                text-decoration-skip-ink: auto;
     16                text-underline-offset: -0.2em;
     17                writing-mode: vertical-lr;
     18           }
     19        </style>
     20    </head>
     21    <body>
     22        <p>Test passes if p and g characters are skipped</p>
     23        <div>ping pong</div>
     24    </body>
     25 </html>