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