blob: 0129eb6be1df6c44a4eb32041d35f37af429d77f [file] [log] [blame]
<!DOCTYPE html><!-- webkit-test-runner [ ColorFilterEnabled=true ] -->
<html>
<head>
<title>CSS Test: -apple-color-filter affects the text shadow</title>
<link rel="author" title="Apple" href="http://www.apple.com/">
<link rel="match" href="-apple-color-filter-text-shadow-expected.html">
<meta name="assert" content="-apple-color-filter affects the color of text-shadow">
<style type="text/css">
.test
{
font: 120px Ahem;
color: rgb(255, 128, 255);
-apple-color-filter: invert();
margin: 100px 20px;
}
.single
{
text-shadow: 50px 50px 0 blue;
}
.multiple
{
text-shadow: 50px 50px 0 blue, 100px 100px 0 red;
}
</style>
</head>
<body>
<p>At the top you should see a green square with a yellow shadow.</p>
<p>Below is a green square with a yellow shadow and a cyan shadow.</p>
<div class="test single">A</div>
<div class="test multiple">A</div>
</body>
</html>