chromium/third_party/blink/renderer/core/css/cssom/css_math_min.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_min.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 {

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

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

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

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

CSSMathExpressionNode* CSSMathMin::ToCalcExpressionNode() const {}

}  // namespace blink