text-decoration-skip-ink-001.html (877B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Test case for text-decoration-skip-ink</title> 6 <meta name="assert" content="text-decoration-skip-ink: descenders are skipped"> 7 <link rel="author" title="Charlie Marlow" href="mailto:cmarlow@mozilla.com"> 8 <link rel="author" title="Mozilla" href="https://www.mozilla.org"> 9 <link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#text-decoration-skip-ink-property"> 10 <link rel="mismatch" href="reference/text-decoration-skip-ink-001-notref.html"> 11 <style> 12 div{ 13 text-decoration: green underline; 14 text-decoration-skip-ink: auto; 15 } 16 </style> 17 </head> 18 <body> 19 <p>Test passes if the underline skips the p and g's in the text below</p> 20 <div>ping pong</div> 21 </body> 22 </html>