Status: FAIL | Duration: 15ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/filter-effects/filters-grayscale-001-test.html
<!DOCTYPE html> <html> <head> <meta name="fuzzy" content="maxDifference=0-1; totalPixels=0-40000" /> <title>CSS Filter Test: Test grayscale shorthand with value 1</title> <link rel="author" title="Takaki Yasuma" href="mailto:takakiyasuma@gmail.com"> <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-grayscale"> <link rel="match" href="filters-grayscale-001-ref.html"> <meta name="assert" content="If the test runs, you should see a black olive colored rectangle."> <style type="text/css"> div{ width: 200px; height: 200px; background-color: red; filter: grayscale(1); } </style> </head> <body> <p>You should see a black olive colored rectangle.</p> <div></div> </body> </html>
/css/filter-effects/filters-grayscale-001-ref.html
<!DOCTYPE html> <html> <head> <title>CSS Filter Test: Test grayscale shorthand with value 1</title> <link rel="author" title="Takaki Yasuma" href="mailto:takakiyasuma@gmail.com"> <link rel="reviewer" title="Dirk Schulze" href="mailto:dschulze@adobe.com"> <style type="text/css"> div{ width: 200px; height: 200px; background-color: #363636; } </style> </head> <body> <p>You should see a black olive colored rectangle.</p> <div></div> </body> </html>