Status: FAIL | Duration: 13ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/filter-effects/filter-saturate-001-test.html
<!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="https://www.w3.org/TR/filter-effects-1/#funcdef-filter-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="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>
/css/filter-effects/filter-saturate-001-ref.html
<!DOCTYPE html> <html> <head> <title>CSS Filter Test: Reference 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"> <style type="text/css"> div { width: 200px; height: 200px; background: #EDEDED; } </style> </head> <body> <p>You should see a gray rectangle.</p> <div></div> </body> </html>