blob: a25a320e2c6fe74c01de6e4e2789815a062379d9 [file] [log] [blame]
<!DOCTYPE html><!-- webkit-test-runner [ ColorFilterEnabled=true ] -->
<html>
<head>
<title>CSS Test: -apple-color-filter affects currentColor</title>
<link rel="author" title="Apple" href="http://www.apple.com/">
<link rel="match" href="-apple-color-filter-current-color-expected.html">
<meta name="assert" content="-apple-color-filter affects currentColor">
<style type="text/css">
.test
{
height: 200px;
width: 200px;
margin: 10px;
color: rgb(255, 128, 255);
border: 4px solid yellow;
-apple-color-filter: invert();
}
.first
{
background-color: currentColor;
}
.second > div {
width: 100%;
height: 100%;
background-color: currentColor;
}
</style>
</head>
<body>
<p>Test passes if there are two green squares with a blue border.</p>
<div class="test first"></div>
<div class="test second"><div></div></div>
</body>
</html>