mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
16 lines
302 B
HTML
16 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>
|