| Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationFillMode.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationFillMode.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationFillMode.cpp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ce67eb79bc329b6fc6fc7ce7ee6b2629071f4028
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationFillMode.cpp
|
| @@ -0,0 +1,22 @@
|
| +// 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/CSSPropertyAPIAnimationFillMode.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class CSSParserContext;
|
| +class CSSParserLocalContext;
|
| +class CSSParserTokenRange;
|
| +class CSSValue;
|
| +
|
| +const CSSValue* CSSPropertyAPIAnimationFillMode::parseSingleValue(
|
| + CSSParserTokenRange& range,
|
| + const CSSParserContext&,
|
| + const CSSParserLocalContext&) {
|
| + return ConsumeIdent<CSSValueNone, CSSValueForwards, CSSValueBackwards,
|
| + CSSValueBoth>(range);
|
| +}
|
| +
|
| +} // namespace blink
|
|
|