/* * Copyright (c) 2025, Sam Atkins * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::CSS { // https://drafts.css-houdini.org/css-typed-om-1/#cssmathvalue class CSSMathValue : public CSSNumericValue { WEB_PLATFORM_OBJECT(CSSMathValue, CSSNumericValue); GC_DECLARE_ALLOCATOR(CSSMathValue); public: virtual ~CSSMathValue() override = default; Bindings::CSSMathOperator operator_() const { return m_operator; } enum class Nested : u8 { No, Yes, }; enum class Parens : u8 { With, Without, }; virtual String serialize_math_value(Nested, Parens) const = 0; protected: explicit CSSMathValue(JS::Realm&, Bindings::CSSMathOperator, NumericType); virtual void initialize(JS::Realm&) override; Bindings::CSSMathOperator m_operator; }; }