chromium/third_party/blink/web_tests/external/wpt/css/filter-effects/backdrop-filter-svg-background-image-blur.html

<!doctype html>
<meta charset="utf-8">
<title>Maybe-unsupported 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:[email protected]">
<link rel="help" href="https://drafts.fxtf.org/filter-effects/#BackdropFilterProperty">
<link rel="mismatch" href="/css/reference/blank.html">
<style>
div {
  width: 100px;
  height: 100px;
  border: 5px solid green;
  backdrop-filter: url(#from-svg);
}
</style>
<div></div>
<svg>
  <defs>
    <filter id="from-svg">
      <feGaussianBlur in="BackgroundImage" stdDeviation="20" result="blur" />
      <feMerge>
        <feMergeNode in="SourceGraphic" />
        <feMergeNode in="blur" />
      </feMerge>
    </filter>
  </defs>
</svg>