diff --git a/tests/cases/text/shadow.html b/tests/cases/text/shadow.html new file mode 100644 index 0000000..24823a5 --- /dev/null +++ b/tests/cases/text/shadow.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html> +<head> + <title>Text shadow tests</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <script type="text/javascript" src="../../test.js"></script> + <style> + span{ + text-shadow: 1px 1px 3px #888; + } + strong { + text-shadow: 1px 1px 2px black, 0 0 1em blue, 0 0 0.2em blue; + } + </style> + +</head> +<body> +Some text <span> followed by text with shadow </span> followed by more text without shadow. +<strong>Multi text shadow</strong> and some more text without shadow +</body> +</html>