LibWeb/CSS: Implement CSSNumericType.equals()

This commit is contained in:
Sam Atkins
2025-08-22 12:53:15 +01:00
committed by Andreas Kling
parent d29084997e
commit 7be645a091
Notes: github-actions[bot] 2025-08-29 09:58:23 +00:00
22 changed files with 181 additions and 16 deletions

View File

@@ -27,6 +27,7 @@ public:
GC::Ref<CSSNumericValue> value() const;
virtual String serialize_math_value(Nested, Parens) const override;
virtual bool is_equal_numeric_value(GC::Ref<CSSNumericValue> other) const override;
private:
CSSMathInvert(JS::Realm&, NumericType, GC::Ref<CSSNumericValue>);