When I put both a backdrop-filter
and a filter
on an element in ladybird using css, the backdrop one stops working.
Linux
backdrop-filter
and a regular filter
to an element.Both filters should have a visible effect.
The element visually behaves as if it didn't have a backdrop-filter
.
data:text/html,This should be very blurred.<div style="backdrop-filter: blur(8px);filter: blur(2px);position: absolute;top: 0;left: 0;width: 100%;height: 100%">This should be a little blurred and on top.</div>
<style>
div {
backdrop-filter: blur(8px);
filter: blur(2px);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
This should be very blurred.
<div>This should be a little blurred and on top.</div>
None
None
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too