wpt / css / filter-effects / filter-chained-url-url-001.html

Status: PASS | Duration: 6ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/filter-effects/filter-chained-url-url-001.html

<!DOCTYPE html>
<title>Chained identity url() filters with 'linearRGB' color-interpolation-filters</title>
<link rel="help" href="https://drafts.fxtf.org/filter-effects/#FilterProperty">
<link rel="help" href="https://drafts.fxtf.org/filter-effects/#propdef-color-interpolation-filters">
<link rel="match" href="reference/green-100x100.html">
<div style="width: 100px; height: 100px; background-color: green; filter: url(#identity) url(#identity)"></div>
<svg height="0">
  <filter id="identity">
    <feColorMatrix type="identity"/>
  </filter>
</svg>

/css/filter-effects/reference/green-100x100.html

<!DOCTYPE html>
<div style="width: 100px; height: 100px; background-color: green"></div>