tor-browser

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

text-decoration-skip-ink-sidewaysrl-001.html (916B)


      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-sidewaysrl-001-notref.html">
     11        <style>
     12           div{
     13                 text-decoration: green underline;
     14                 text-decoration-skip-ink: auto;
     15                 writing-mode: sideways-rl;
     16           }
     17        </style>
     18    </head>
     19    <body>
     20        <p>Test passes if p and g characters are skipped</p>
     21        <div>ping pong</div>
     22    </body>
     23 </html>