mirror of
https://github.com/servo/servo.git
synced 2025-06-18 22:34:30 +01:00
21 lines
336 B
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>
|
|
|