2025-09-30 00:39:23 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2025, Callum Law <callumlaw1709@outlook.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/CSS/StyleValues/StyleValue.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
|
|
class AbstractNonMathCalcFunctionStyleValue : public StyleValue {
|
|
|
|
|
using StyleValue::StyleValue;
|
|
|
|
|
|
|
|
|
|
public:
|
2025-10-21 08:48:32 -03:00
|
|
|
virtual RefPtr<CalculationNode const> resolve_to_calculation_node(CalculationContext const&, CalculationResolutionContext const&) const = 0;
|
2025-09-30 00:39:23 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|