chromium/third_party/blink/web_tests/external/wpt/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:[email protected]">
    <link rel="reviewer" title="Dirk Schulze" href="mailto:[email protected]">
    <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>