chromium/third_party/blink/web_tests/external/wpt/css/css-text-decor/reference/text-decoration-skip-ink-004-notref.html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Non-reference case for text-decoration-skip-ink</title>
        <link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
        <style>
         div{
             font: 20px/1 Ahem;
             color: rgba(255,255,0,0.25);
             text-decoration: green underline;
             text-decoration-skip-ink: none;
             text-underline-offset: -.3em;
         }
        </style>
    </head>
    <body>
        <p>Test passes if underline appears only across the 'p' glyph</p>
        <div>XXpX</div>
    </body>
</html>