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

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Reference file for text-decoration-skip-ink test</title>
        <style>
         @font-face {
             font-family: mplus;
             src: url(/fonts/mplus-1p-regular.woff) format("woff");
         }
         div{
             font: 50px mplus, sans-serif;
             color: #00008080;
             letter-spacing: 10px;
             text-decoration: green underline;
             text-underline-offset: -3px;
             text-decoration-thickness: 3px;
             text-decoration-skip-ink: none;
         }
        </style>
    </head>
    <body>
        <p>Test passes if the underline skips the glyphs in the text below</p>
        <div>中文</div>
    </body>
</html>