blob: 634a468630bfccf9dbf341d486c2da565ae4e7a1 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "core/css/cssom/CSSMathValue.h"
#include "core/css/CSSCalculationValue.h"
namespace blink {
const CSSValue* CSSMathValue::ToCSSValue() const {
CSSCalcExpressionNode* node = ToCalcExpressionNode();
if (!node)
return nullptr;
return CSSPrimitiveValue::Create(CSSCalcValue::Create(node));
}
} // namespace blink