Do we have test coverage for will-change:clip-path without backdrop filter won't create a backdrop root?
if (object_.HasLayer()) {Do we still need a feature gate here?
if (RuntimeEnabledFeatures::
BackdropRootForClipPathWithBackdropFilterEnabled() &&
properties_ && properties_->ClipPathClip() && object_.HasLayer()) {
}This if block is now empty.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Do we have test coverage for will-change:clip-path without backdrop filter won't create a backdrop root?
This is impossible to check with a web test as the only way to visually determine whether a backdrop root exists is by putting a backdrop filter over it. Anything else would be a bug.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (object_.HasLayer()) {Wangsong JinDo we still need a feature gate here?
Just a reminder: if `BackdropRootForClipPathWithBackdropFilterEnabled` is no longer needed, please remove it from runtime_enabled_features.json5.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (RuntimeEnabledFeatures::
BackdropRootForClipPathWithBackdropFilterEnabled() &&
properties_ && properties_->ClipPathClip() && object_.HasLayer()) {
}This if block is now empty.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |