diff --git a/Userland/Libraries/LibWeb/CSS/StyleValues/StringStyleValue.h b/Userland/Libraries/LibWeb/CSS/StyleValues/StringStyleValue.h index 6ddb4d1fab3..b1ff417245a 100644 --- a/Userland/Libraries/LibWeb/CSS/StyleValues/StringStyleValue.h +++ b/Userland/Libraries/LibWeb/CSS/StyleValues/StringStyleValue.h @@ -19,7 +19,7 @@ public: } virtual ~StringStyleValue() override = default; - FlyString string_value() const { return m_string; } + FlyString const& string_value() const { return m_string; } String to_string() const override { return serialize_a_string(m_string); } bool properties_equal(StringStyleValue const& other) const { return m_string == other.m_string; }