diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/Node.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/Node.cpp b/Userland/Libraries/LibWeb/Layout/Node.cpp index 729633876a..86ed73a1d0 100644 --- a/Userland/Libraries/LibWeb/Layout/Node.cpp +++ b/Userland/Libraries/LibWeb/Layout/Node.cpp @@ -453,9 +453,7 @@ void NodeWithStyle::apply_style(const CSS::StyleProperties& computed_style) if (pointer_events.has_value()) computed_values.set_pointer_events(pointer_events.value()); - auto text_decoration_line = computed_style.text_decoration_line(); - if (text_decoration_line.has_value()) - computed_values.set_text_decoration_line(text_decoration_line.value()); + computed_values.set_text_decoration_line(computed_style.text_decoration_line()); auto text_decoration_style = computed_style.text_decoration_style(); if (text_decoration_style.has_value()) |