wpt / css / filter-effects / backdrop-filter-plus-will-change-opacity.html

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

/css/filter-effects/backdrop-filter-plus-will-change-opacity.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>backdrop-filter: Correctly apply backdrop-filter with will-change opacity</title>
<link rel="author" href="mailto:pdr@chromium.org">
<link rel="help" href="https://drafts.fxtf.org/filter-effects-2/#BackdropFilterProperty">
<link rel="match" href="reference/backdrop-filter-plus-will-change-opacity-ref.html">

<p>Expected: A black box.</p>

<div id="filter"></div>

<style>
  #filter {
    width: 100px;
    height: 100px;
    backdrop-filter: invert(1);
    will-change: opacity;
  }
</style>

/css/filter-effects/reference/backdrop-filter-plus-will-change-opacity-ref.html

<!DOCTYPE html>
<meta charset="utf-8">
<p>Expected: A black box.</p>
<div id="blackbox"></div>
<style>
  #blackbox {
    width: 100px;
    height: 100px;
    background-color: black;
  }
</style>