summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/filter-effects/filter-invalid.html
blob: 3aad44efd4ece87e680d31613c641975b2aeb1c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<meta charset="utf-8">
<title>Invalid filter draws unfiltered frame</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/#typedef-filter-url">
<link rel="match" href="filter-invalid-ref.html">
<style>
div, rect {
  width: 100px;
  height: 100px;
  filter: url(#not-found);
}
div {
  background-color: blue;
}
rect {
  fill: purple;
}
</style>
<div></div>
<svg>
  <rect></rect>
</svg>