blob: 72932f95ef5dc592b98c51cb5733fcbb18e3539f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE HTML>
<html>
<head>
<title>Test 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;
}
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>
|