tor-browser

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

text-decoration-skip-ink-upright-001.html (1101B)


      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-upright-001-notref.html">
     11        <link rel="mismatch" href="reference/text-decoration-skip-ink-upright-001-offset-notref.html">
     12        <style>
     13           div{
     14                 text-decoration-skip-ink: auto;
     15                 text-decoration: green underline;
     16                 writing-mode: vertical-lr;
     17                 text-orientation: upright;
     18                 text-underline-offset: -0.5em;
     19           }
     20        </style>
     21    </head>
     22    <body>
     23        <p>Test if underline skips the characters</p>
     24        <div>ping pong</div>
     25    </body>
     26 </html>