Files
servo/tests/ref/text_shadow_decorations_a.html

23 lines
329 B
HTML

<!DOCTYPE html>
<html>
<head>
<!-- Tests that `text-shadow` shadows decorations. -->
<style>
#a {
text-decoration: underline;
text-shadow: 6px 6px black;
color: red;
font-size: 96px;
position: absolute;
top: 0;
left: 0;
width: 300px;
}
</style>
</head>
<body>
<div id=a>Foo</div>
</body>
</html>