blob: ac1dc6e2dd629cf18bff3179edc2c289c81ea9af [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>CSS Test: opacity color-filter</title>
<link rel="author" title="Apple" href="http://www.apple.com/">
<link rel="match" href="color-filter-opacity-expected.html">
<meta name="assert" content="opacity color-filter">
<style type="text/css">
.test
{
width: 200px;
height: 200px;
background-color: green;
margin: 10px;
float: left;
}
.test > div {
width: 100px;
height: 100px;
margin: 50px;
background-color: blue;
}
</style>
</head>
<body>
<div class="test" style="color-filter: opacity()"><div></div></div>
<div class="test" style="color-filter: opacity(2)"><div></div></div>
<div class="test" style="color-filter: opacity(1)"><div></div></div>
<div class="test" style="color-filter: opacity(0.5)"><div></div></div>
<div class="test" style="color-filter: opacity(0)"><div></div></div>
<div class="test" style="color-filter: opacity(-0.5)"><div></div></div>
</body>
</html>