blob: d0f5511befb7532b5dc7e65f2f5a3b5064b4bbce [file] [log] [blame]
<!DOCTYPE html><!-- webkit-test-runner [ ColorFilterEnabled=true ] -->
<html>
<head>
<title>CSS Test: -apple-color-filter affects text decoration shadows</title>
<link rel="author" title="Apple" href="http://www.apple.com/">
<link rel="match" href="-apple-color-filter-text-decoration-shadow-expected.html">
<meta name="assert" content="-apple-color-filter affects text decoration shadows">
<meta name="fuzzy" content="maxDifference=0-1; totalPixels=0-9430">
<style type="text/css">
.test
{
font: 120px sans-serif;
color: rgb(255, 128, 255);
-apple-color-filter: invert();
margin: 100px 20px;
text-decoration: underline overline line-through;
}
.single
{
text-shadow: 150px 0 0 blue;
}
.multiple
{
text-shadow: 150px 0 0 blue, 300px 0 0 red;
}
</style>
</head>
<body>
<div class="test single">O</div>
<div class="test multiple">O</div>
</body>
</html>