summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2021-09-24 11:37:35 +0100
committerAndreas Kling <kling@serenityos.org>2021-09-24 15:01:43 +0200
commit058d44dcae2241c9e5bb0e81268275eae7eb4714 (patch)
tree81abafef864d7f9a3296302035e41120e7aeabc1 /Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp
parenta83b620fa67dccc00e06800dd34718d560818809 (diff)
downloadserenity-058d44dcae2241c9e5bb0e81268275eae7eb4714.zip
LibWeb: Replace last couple of StyleValue casts with `as_foo()`
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp')
-rw-r--r--Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp
index d9b59bf80d..7ecde84f51 100644
--- a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp
+++ b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp
@@ -2095,7 +2095,7 @@ RefPtr<StyleValue> Parser::parse_flex_value(ParsingContext const& context, Vecto
return nullptr;
// Zero is a valid value for basis, but only if grow and shrink are already specified.
- if (value->is_numeric() && static_cast<NumericStyleValue&>(*value).value() == 0) {
+ if (value->has_number() && value->to_number() == 0) {
if (flex_grow && flex_shrink && !flex_basis) {
flex_basis = LengthStyleValue::create(Length(0, Length::Type::Px));
continue;