skip-ink-vertical-align-ref.html (530B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <title>Reference 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 text-decoration-skip-ink: none; 10 } 11 span{ 12 vertical-align: super; 13 } 14 </style> 15 </head> 16 <body> 17 <p>Ink should not be skipped when vertical-align moves text away from the underline</p> 18 <div>test <span>pgqy</span> test</div> 19 </body> 20 </html>