tor-browser

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

text-underline-offset-vertical-001-ref.html (617B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <meta charset="utf-8">
      5    <title>Reference case for text-underline-offset</title>
      6    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      7    <style>
      8        span{
      9            font: 20px/1 Ahem;
     10            color: transparent;
     11            writing-mode: vertical-lr;
     12            text-decoration: green underline;
     13            text-decoration-skip-ink: none;
     14            text-underline-offset: 0;
     15        }
     16    </style>
     17 </head>
     18 <body>
     19    <div>Test passes if the underline is vertical and close to the word left</div>
     20    <div>left<span>XXXXX</span></div>
     21 </body>
     22 </html>