chromium/third_party/blink/web_tests/fast/css3-text/css3-text-decoration/text-decoration-skip-ink-links-expected.html

<!DOCTYPE html>
<meta charset="utf-8">
<style>
p {
width: 600px;
}

@font-face {
font-family: LowSlashUnderscoreFont;
src: url(resources/LowSlashUnderscoreFont.otf);
unicode-range: U+2F, U+5C, U+5F;
}

.decoration {
font-family: LowSlashUnderscoreFont, sans-serif;
text-decoration-color: red;
text-decoration-skip-ink: none;
text-decoration-line: underline;
}
</style>
<p><a href="https://crbug.com/784493">crbug.com/784493</a> Text decoration for text including a slash /, a backslash \ and an underscore _ should not ink-skip for those characters.</p>
<div class="decoration">
Slash / backslash \ and underscore _.
</div>