| Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2d4e00d2eb4e95b03680722e1ff2577b602f627c
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp
|
| @@ -0,0 +1,18 @@
|
| +// 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/CSSPropertyAPIOffsetPath.h"
|
| +
|
| +#include "core/css/properties/CSSPropertyOffsetPathUtils.h"
|
| +
|
| +namespace blink {
|
| +
|
| +const CSSValue* CSSPropertyAPIOffsetPath::parseSingleValue(
|
| + CSSParserTokenRange& range,
|
| + const CSSParserContext& context,
|
| + CSSPropertyID) {
|
| + return CSSPropertyOffsetPathUtils::ConsumeOffsetPath(range, &context);
|
| +}
|
| +
|
| +} // namespace blink
|
|
|