forked from w3c/csswg-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilter-saturate-001-test.html
More file actions
29 lines (26 loc) · 932 Bytes
/
filter-saturate-001-test.html
File metadata and controls
29 lines (26 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<title>CSS Filter Test: Test for Saturate short hand</title>
<link rel="author" title="Akihiro Oyamada" href="mailto:admin@yomotsu.net">
<link rel="reviewer" title="Dirk Schulze" href="mailto:dschulze@adobe.com">
<link rel="help" href="http://www.w3.org/TR/filter-effects-1/#FilterProperty">
<link rel="help" href="http://www.w3.org/TR/filter-effects-1/#funcdef-saturate">
<link rel="help" href="http://www.w3.org/TR/filter-effects-1/#saturateEquivalent">
<link rel="match" href="filter-saturate-001-ref.html">
<meta name="flags" content="">
<meta name="assert" content="the test passes if you see gray box.">
<style type="text/css">
div {
width: 200px;
height: 200px;
background: yellow;
filter: saturate( 0% );
}
</style>
</head>
<body>
<p>You should see a gray rectangle.</p>
<div></div>
</body>
</html>