#include "third_party/blink/renderer/core/animation/number_property_functions.h"
#include "third_party/blink/renderer/core/style/computed_style.h"
namespace blink {
std::optional<double> NumberPropertyFunctions::GetInitialNumber(
const CSSProperty& property,
const ComputedStyle& initial_style) { … }
std::optional<double> NumberPropertyFunctions::GetNumber(
const CSSProperty& property,
const ComputedStyle& style) { … }
double NumberPropertyFunctions::ClampNumber(const CSSProperty& property,
double value) { … }
bool NumberPropertyFunctions::SetNumber(const CSSProperty& property,
ComputedStyleBuilder& builder,
double value) { … }
}