wpt / css / filter-effects / backdrop-filter-invalid.html

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

/css/filter-effects/backdrop-filter-invalid.html

<!doctype html>
<meta charset="utf-8">
<title>Invalid backdrop-filter doesn't cause element to disappear</title>
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="help" href="https://drafts.fxtf.org/filter-effects-2/#BackdropFilterProperty">
<link rel="help" href="https://drafts.fxtf.org/filter-effects-1/#typedef-filter-value-list">
<link rel="match" href="filter-invalid-ref.html">
<style>
div, rect {
  width: 100px;
  height: 100px;
  backdrop-filter: url(#not-found);
}
div {
  background-color: blue;
}
rect {
  fill: purple;
}
</style>
<div></div>
<svg>
  <rect></rect>
</svg>

/css/filter-effects/filter-invalid-ref.html

<!doctype html>
<meta charset="utf-8">
<title>CSS Test Reference</title>
<style>
div {
  width: 100px;
  height: 100px;
}
</style>
<div style="background-color: blue"></div>
<div style="background-color: purple"></div>