LibWeb/CSS: Implement "Create a sum value"

This commit is contained in:
Sam Atkins 2025-09-11 16:48:57 +01:00 committed by Jelle Raaijmakers
commit 80abffd2e8
Notes: github-actions[bot] 2025-09-12 11:46:44 +00:00
17 changed files with 320 additions and 1 deletions

View file

@ -32,6 +32,7 @@ public:
GC::Ptr<CSSUnitValue> converted_to_unit(FlyString const& unit) const;
virtual bool is_equal_numeric_value(GC::Ref<CSSNumericValue> other) const override;
virtual Optional<SumValue> create_a_sum_value() const override;
private:
explicit CSSUnitValue(JS::Realm&, double value, FlyString unit, NumericType type);