chromium/third_party/blink/web_tests/external/wpt/css/filter-effects/reference/background-image-blur-repaint-ref.html

<!DOCTYPE html>
<html>
<head>
<style>
.bg {
  position: absolute;
  left:   200px;
  top:    0px;
  width:  400px;
  height: 300px;
  background-image: url(../support/color-palette.png);
  filter: blur(8px);
}
.box {
  position: absolute;
  left:   300px;
  top:    50px;
  width:  50px;
  height: 50px;
  background-color: green;
}
</style>
</head>
<body>
<div class="bg"></div>
<div class="box"></div>
</body>
</html>