servo/tests/ref/text_shadow_multiple_shadows_a.html

21 lines
336 B
HTML

<!DOCTYPE html>
<html>
<head>
<!-- Tests that multiple `text-shadow`s paint in the right order. -->
<style>
#a {
text-shadow: 6px 6px black, 12px 12px blue;
color: red;
font-size: 96px;
position: absolute;
top: 100px;
left: 100px;
width: 300px;
}
</style>
</head>
<body>
<div id=a>Foo</div>
</body>
</html>