diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/Node.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/Node.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/Node.cpp b/Userland/Libraries/LibWeb/Layout/Node.cpp index 565348eb4d..69058d61ce 100644 --- a/Userland/Libraries/LibWeb/Layout/Node.cpp +++ b/Userland/Libraries/LibWeb/Layout/Node.cpp @@ -393,6 +393,7 @@ void NodeWithStyle::apply_style(const CSS::StyleProperties& computed_style) computed_values.set_flex_shrink(computed_style.flex_shrink()); computed_values.set_order(computed_style.order()); computed_values.set_clip(computed_style.clip()); + computed_values.set_backdrop_filter(computed_style.backdrop_filter()); auto justify_content = computed_style.justify_content(); if (justify_content.has_value()) |