chromium/third_party/blink/renderer/core/css/cssom/css_math_max.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/css/cssom/css_math_max.h"

#include "third_party/blink/renderer/core/css/css_math_expression_node.h"
#include "third_party/blink/renderer/core/css/cssom/css_numeric_sum_value.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"

namespace blink {

CSSMathMax* CSSMathMax::Create(const HeapVector<Member<V8CSSNumberish>>& args,
                               ExceptionState& exception_state) {}

CSSMathMax* CSSMathMax::Create(CSSNumericValueVector values) {}

std::optional<CSSNumericSumValue> CSSMathMax::SumValue() const {}

void CSSMathMax::BuildCSSText(Nested, ParenLess, StringBuilder& result) const {}

CSSMathExpressionNode* CSSMathMax::ToCalcExpressionNode() const {}

}  // namespace blink