chromium/third_party/blink/renderer/core/css/css_color_mix_value.cc

// Copyright 2022 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/css_color_mix_value.h"

#include "third_party/blink/renderer/core/css/css_numeric_literal_value.h"
#include "third_party/blink/renderer/platform/wtf/math_extras.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"

namespace blink::cssvalue {

bool CSSColorMixValue::NormalizePercentages(
    const CSSPrimitiveValue* percentage1,
    const CSSPrimitiveValue* percentage2,
    double& mix_amount,
    double& alpha_multiplier) {}

Color CSSColorMixValue::Mix(const Color& color1, const Color& color2) const {}

bool CSSColorMixValue::Equals(const CSSColorMixValue& other) const {}

// https://drafts.csswg.org/css-color-5/#serial-color-mix
String CSSColorMixValue::CustomCSSText() const {}

void CSSColorMixValue::TraceAfterDispatch(blink::Visitor* visitor) const {}

}  // namespace blink::cssvalue