summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/CSS
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibHTML/CSS')
-rw-r--r--Libraries/LibHTML/CSS/StyleResolver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibHTML/CSS/StyleResolver.cpp b/Libraries/LibHTML/CSS/StyleResolver.cpp
index c4dca04b65..6f7697ba65 100644
--- a/Libraries/LibHTML/CSS/StyleResolver.cpp
+++ b/Libraries/LibHTML/CSS/StyleResolver.cpp
@@ -106,7 +106,7 @@ bool StyleResolver::is_inherited_property(const StringView& name)
// FIXME: This property is not supposed to be inherited, but we currently
// rely on inheritance to propagate decorations into line boxes.
- inherited_properties.set("text-decoraton");
+ inherited_properties.set("text-decoration");
}
return inherited_properties.contains(name);
}