mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-16 04:59:23 +00:00
Because we store calculations as a tree of CalculationNodes inside a CalculatedStyleValue, instead of a tree of StyleValues directly, this implements a create_calculation_node() method on CSSNumericValue. CSSMathValue::create_an_internal_representation() then calls create_calculation_node() on itself, and wraps it in a CalculatedStyleValue. Lots of WPT passes again! Some regressions, which are expected: `cursor` fails a test for the same reason it fails other that set it to some kind of numeric value: We don't distinguish between "can contain a number" and "can accept a number by itself". This will affect any similar properties, but overall this is a big improvement.
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/CSSMathValuePrototype.h>
|
|
#include <LibWeb/CSS/CSSNumericValue.h>
|
|
#include <LibWeb/Forward.h>
|
|
|
|
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;
|
|
|
|
virtual WebIDL::ExceptionOr<NonnullRefPtr<StyleValue const>> create_an_internal_representation(PropertyNameAndID const&) const final override;
|
|
|
|
protected:
|
|
explicit CSSMathValue(JS::Realm&, Bindings::CSSMathOperator, NumericType);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
Bindings::CSSMathOperator m_operator;
|
|
};
|
|
|
|
}
|