wpt / css / filter-effects / feflood-with-filter-reference.html

Status: FAIL | Duration: 8ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/filter-effects/feflood-with-filter-reference.html

<!doctype html>
<title>Filter primitive (feFlood) with filter reference</title>
<link rel="help" href="https://drafts.fxtf.org/filter-effects-1/#FilterProperty">
<link rel="help" href="https://drafts.fxtf.org/filter-effects-1/#feFloodElement">
<link rel="match" href="reference/green-100x100.html">
<svg>
  <filter id="f" x="0" y="0" width="1" height="1"
          color-interpolation-filters="sRGB">
    <feFlood flood-color="green" filter="url(#f)"/>
  </filter>
  <rect width="100" height="100" filter="url(#f)"/>
</svg>

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

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