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