| Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationIterationCount.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationIterationCount.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationIterationCount.cpp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f7b4e1f95559741b0dbc80497ad477cd45c8dca7
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationIterationCount.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/CSSPropertyAPIAnimationIterationCount.h"
|
| +
|
| +#include "core/CSSValueKeywords.h"
|
| +#include "core/css/parser/CSSPropertyParserHelpers.h"
|
| +#include "core/css/properties/CSSPropertyAnimationIterationCountUtils.h"
|
| +
|
| +namespace blink {
|
| +
|
| +const CSSValue* CSSPropertyAPIAnimationIterationCount::parseSingleValue(
|
| + CSSParserTokenRange& range,
|
| + const CSSParserContext&,
|
| + const CSSParserLocalContext&) {
|
| + return CSSPropertyParserHelpers::ConsumeCommaSeparatedList(
|
| + CSSPropertyAnimationIterationCountUtils::ConsumeAnimationIterationCount,
|
| + range);
|
| +}
|
| +
|
| +} // namespace blink
|
|
|