tor-browser

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

text-underline-offset-scroll-001-notref.html (650B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <meta charset="utf-8">
      5    <title>Non-reference case for text-underline-offset</title>
      6    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      7    <style>
      8        #text{
      9            border: black dashed;
     10            overflow-y: auto;
     11            height: 5em;
     12            width: 20em;
     13            font: 20px/1 Ahem;
     14            color: transparent;
     15            text-decoration: red underline;
     16            text-decoration-skip-ink: none;
     17        }
     18    </style>
     19 </head>
     20 <body>
     21    <div>Test fails if there is a red line or scrollbar in the dashed area</div>
     22    <div id="text">XXXXXXX</div>
     23 </body>
     24 </html>