Status: FAIL | Duration: 13ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/filter-effects/filters-sepia-001-test.html
<!DOCTYPE html> <html> <head> <title>CSS Filter Test: Test sepia 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-sepia"> <link rel="match" href="filters-sepia-001-ref.html"> <meta name="assert" content="If the test runs, you should see a field drab colored rectangle."> <style type="text/css"> div{ width: 200px; height: 200px; background-color: red; filter: sepia(1); } </style> </head> <body> <p>You should see a field drab colored rectangle.</p> <div></div> </body> </html>
/css/filter-effects/filters-sepia-001-ref.html
<!DOCTYPE html> <html> <head> <title>CSS Filter Test: Test sepia 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: #645945; } </style> </head> <body> <p>You should see a field drab colored rectangle.</p> <div></div> </body> </html>