Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-masking/mask-image/backdrop-filter-good-and-bad-mask-image.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Backdrop-filter with invalid mask-image URL</title>
<link rel="match" href="backdrop-filter-good-and-bad-mask-image-ref.html">
<style>
body {
background-color: yellow;
}
.double-mask {
/* Multiple mask layers: invalid mask is ignored, valid mask takes effect. */
}
.backdrop-filter {
backdrop-filter: invert(1);
background-color: rgba(255, 255, 255, 0.5);
}
</style>
<p class="backdrop-filter double-mask">Backdrop-filter with double mask-image</p>