mirror of
https://github.com/servo/servo
synced 2026-05-12 01:46:28 +02:00
23 lines
329 B
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>
|
|
|