haikuwebkit/LayoutTests/css3/color-filters/color-filter-color-property...

33 lines
994 B
HTML

<!DOCTYPE html><!-- webkit-test-runner [ ColorFilterEnabled=true ] -->
<html>
<head>
<title>CSS Test: -apple-color-filter affects the color of a list item bullet</title>
<link rel="author" title="Apple" href="http://www.apple.com/">
<link rel="match" href="-apple-color-filter-color-property-list-item-expected.html">
<meta name="assert" content="-apple-color-filter affects the color of a list item bullet">
<style type="text/css">
div.test
{
font: 200px Ahem;
color: rgb(255, 128, 255);
-apple-color-filter: invert();
}
ul {
margin: 0;
}
li {
margin-left: 100px;
}
</style>
</head>
<body>
<p>Test passes if there is a green circle.</p>
<div class="test">
<ul>
<li></li>
</ul>
</div>
</body>
</html>