blob: 71c815b34e0eb43d38456ac3ec67cf3a7f96308c [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>text-decoration overline</title>
<meta name="assert" content="text-decoration:overline; there is an overline">
<link rel="author" title="Richard Ishida" href="mailto:ishida@w3.org">
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#line-decoration">
<!-- cosmetic styling -->
<style>
#htmlsrc { margin: 2em; }
#htmlsrc p {
font-size: 28px;
border-radius: 5px;
line-height: 1.5;
}
</style>
<!-- the test -->
<style>
div span {
text-decoration:overline;
}</style>
</head>
<body>
<p class="instructions">Test passes if there is an overline.</p>
<div id="htmlsrc">
<div>
<p lang="en"><span>The quick brown fox jumps over the lazy dog.</span></p>
</div> </div>
</body>
</html>