tor-browser

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

skip-ink-vertical-align.html (480B)


      1 <!DOCTYPE HTML>
      2 <html>
      3  <head>
      4    <title>Test case for text-decoration-skip-ink: skip-ink should detect and work with vertical-align</title>
      5    <style>
      6     div{
      7         font: 48px/2 Times;
      8         text-decoration: purple underline;
      9     }
     10     span{
     11         vertical-align: super;
     12     }
     13    </style>
     14  </head>
     15  <body>
     16    <p>Ink should not be skipped when vertical-align moves text away from the underline</p>
     17    <div>test <span>pgqy</span> test</div>
     18  </body>
     19 </html>