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-underline-offset-percentage.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test case for text-underline-offset percentage support</title>
<link rel="author" title="Zak Ridouh" href="mailto:zakr@apple.com">
<link rel="match" href="text-underline-offset-percentage-ref.html">
<style>
#main {
border-bottom: 2px solid purple;
display: flex;
}
#text, #norm {
text-decoration-color: green;
text-decoration-line: underline;
text-decoration-thickness: 15px;
font: 20px/2 Arial;
color: transparent;
position: relative;
margin-right: 10px;
}
#text {
text-underline-offset: 25%;
}
#norm {
text-underline-offset: 25%;
}
</style>
</head>
<body >
<p class="instructions">Test passes if the lines are at the same level</p>
<div id="main">
<div>
<p>left<span id="text">XXXX</span></p>
</div>
<div>
<p><span id="norm">XXXX</span>right</p>
</div>
</div>
</body>
</html>