blob: f9bf8d2a8d2c72bc61db54099486c1a15e519178 [file] [log] [blame]
<!DOCTYPE html><!-- webkit-test-runner [ ColorFilterEnabled=true ] -->
<html>
<head>
<title>CSS Test: -apple-color-filter affects gradients</title>
<link rel="author" title="Apple" href="http://www.apple.com/">
<link rel="match" href="-apple-color-filter-grayscale-expected.html">
<meta name="assert" content="-apple-color-filter affects gradients">
<style type="text/css">
.test
{
width: 200px;
height: 200px;
margin: 10px;
float: left;
-apple-color-filter: invert();
}
</style>
</head>
<body>
<div class="test" style="background-image: linear-gradient(yellow, cyan);"></div>
<div class="test" style="background-image: radial-gradient(yellow, cyan);"></div>
<div class="test" style="background-image: repeating-linear-gradient(yellow, cyan 50px);"></div>
<div class="test" style="background-image: repeating-radial-gradient(yellow, cyan 50px);"></div>
</body>
</html>