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

// Copyright 2016 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_position_value.h"

#include "third_party/blink/renderer/core/css/css_identifier_value.h"
#include "third_party/blink/renderer/core/css/css_value_pair.h"
#include "third_party/blink/renderer/core/css/cssom/css_math_sum.h"
#include "third_party/blink/renderer/core/css/cssom/css_numeric_value.h"
#include "third_party/blink/renderer/core/css/cssom/css_unit_value.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"

namespace blink {

namespace {

bool IsValidPositionCoord(CSSNumericValue* v) {}

CSSNumericValue* FromSingleValue(const CSSValue& value) {}

}  // namespace

CSSPositionValue* CSSPositionValue::Create(CSSNumericValue* x,
                                           CSSNumericValue* y,
                                           ExceptionState& exception_state) {}

CSSPositionValue* CSSPositionValue::Create(CSSNumericValue* x,
                                           CSSNumericValue* y) {}

CSSPositionValue* CSSPositionValue::FromCSSValue(const CSSValue& value) {}

void CSSPositionValue::setX(CSSNumericValue* x,
                            ExceptionState& exception_state) {}

void CSSPositionValue::setY(CSSNumericValue* y,
                            ExceptionState& exception_state) {}

const CSSValue* CSSPositionValue::ToCSSValue() const {}

}  // namespace blink