blob: 2d91f73e2ee97d3809eacdfccc43215cd2011655 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test case for text-decoration-skip-ink</title>
<meta name="assert" content="text-decoration-skip-ink: all causes skipping even for CJK">
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
<link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#text-decoration-skip-ink-property">
<link rel="mismatch" href="reference/text-decoration-skip-ink-005-notref.html">
<style>
div{
font: 50px sans-serif;
color: #00008080;
letter-spacing: 10px;
/* make sure the underline clashes badly with the glyphs! */
text-decoration: green underline;
text-underline-offset: -3px;
text-decoration-thickness: 3px;
text-decoration-skip-ink: all;
}
</style>
</head>
<body>
<p>Test passes if the underline skips the glyphs in the text below</p>
<div>中文</div>
</body>
</html>