diff options
Diffstat (limited to 'tests/ref/text_shadow_blur_ref.html')
-rw-r--r-- | tests/ref/text_shadow_blur_ref.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ref/text_shadow_blur_ref.html b/tests/ref/text_shadow_blur_ref.html new file mode 100644 index 00000000000..b733b16ec18 --- /dev/null +++ b/tests/ref/text_shadow_blur_ref.html @@ -0,0 +1,18 @@ +<!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> |