Skip to content

Commit

Permalink
Update Edge data for backdrop-filter
Browse files Browse the repository at this point in the history
https://caniuse.com/css-backdrop-filter has a note for Edge 17-18 which
turns out to be correct. It was only supported as
-webkit-backdrop-filter, presumably due to site compat issues.

This was verified by testing https://wpt.live/css/filter-effects/backdrop-filter-basic.html
in Edge 17. The test doesn't pass as-is, but changing backdrop-filter to
-webkit-backdrop-filter and it does render as expected.
  • Loading branch information
foolip committed Apr 6, 2024
1 parent e801c86 commit 83c3441
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions css/properties/backdrop-filter.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,16 @@
"version_added": "76"
},
"chrome_android": "mirror",
"edge": {
"version_added": "17"
},
"edge": [
{
"version_added": "79"
},
{
"prefix": "-webkit-",
"version_added": "17",
"version_removed": "79"
}
],
"firefox": {
"version_added": "103"
},
Expand Down

0 comments on commit 83c3441

Please sign in to comment.