blob: 190fcaa5e8f427d3391a5854858cf428c0ca22a1 [file] [log] [blame]
<!DOCTYPE html><!-- webkit-test-runner [ ColorFilterEnabled=true ] -->
<html>
<head>
<title>CSS Test: -apple-color-filter affects the color of text</title>
<link rel="author" title="Apple" href="http://www.apple.com/">
<link rel="match" href="-apple-color-filter-color-text-decorations-expected.html">
<meta name="assert" content="-apple-color-filter affects the color of text decorations">
<meta name="fuzzy" content="maxDifference=0-1; totalPixels=0-9250">
<style type="text/css">
div.test
{
font: 140px sans-serif;
color: rgb(255, 128, 255);
-webkit-text-decoration: underline overline yellow;
-apple-color-filter: invert();
}
p
{
margin: 8px;
}
.wavy
{
-webkit-text-decoration: underline overline wavy yellow;
}
.dotted
{
-webkit-text-decoration: underline overline dotted yellow;
}
</style>
</head>
<body>
<p>You hsould see three green letter A. The top should have a solid bar overline and underline. The second should have a wavy overline and underline. The bottom should have a dotted overline and underline.</p>
<div class="test">
<p>A<p>
<p class="wavy">A<p>
<p class="dotted">A<p>
</div>
</body>
</html>