servo/tests/ref/text_shadow_blur_ref.html

18 lines
313 B
HTML

<!DOCTYPE html>
<html>
<head>
<!-- Tests that `text-shadow` mirrors `box-shadow` in the way that it blurs. -->
<style>
html, body {
margin: 0;
}
section {
background: red;
width: 100px;
height: 100px;
box-shadow: blue 10px 10px 5px;
}
</style>
</head>
<body><section></section></body>
</html>