Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text-decor/text-decoration-thickness-single2.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<title>Test case for text-decoration-thickness</title>
<meta name="assert" content="thick underline should show on short inline content">
<link rel="mismatch" href="reference/text-decoration-thickness-single2-notref.html">
<style>
div {
text-decoration: underline;
font: 20px/1 Monospace;
color: transparent;
text-decoration-thickness: 20px;
text-decoration-color: green;
}
</style>
<body>
<p>Test passes if the short inline content has a thick green underline.</p>
<div>X</div>
</body>
</html>