blob: 9dbeb4271afeb6c75820e22076d44865fa4603cc [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/properties/CSSPropertyAPITransform.h"
#include "core/css/parser/CSSParserContext.h"
#include "core/css/parser/CSSParserLocalContext.h"
#include "core/css/parser/CSSParserTokenRange.h"
#include "core/css/properties/CSSPropertyTransformUtils.h"
namespace blink {
const CSSValue* CSSPropertyAPITransform::parseSingleValue(
CSSParserTokenRange& range,
const CSSParserContext& context,
const CSSParserLocalContext& local_context) {
return CSSPropertyTransformUtils::ConsumeTransformList(range, context,
local_context);
}
} // namespace blink