mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
15 lines
302 B
HTML
15 lines
302 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Tests that `text-shadow` mirrors `box-shadow` in the way that it blurs. -->
|
|
<link rel="stylesheet" type="text/css" href="css/ahem.css">
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
color: red;
|
|
text-shadow: blue 10px 10px 5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>X</body>
|
|
</html>
|