Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIBoxGroup.cpp |
| diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIBoxGroup.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIBoxGroup.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..691a9e3c343afc1ffd46e4d5d717bef0c810c2f1 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIBoxGroup.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/CSSPropertyAPIBoxGroup.h" |
| + |
| +#include "core/css/parser/CSSPropertyParserHelpers.h" |
| + |
| +namespace blink { |
| + |
| +const CSSValue* CSSPropertyAPIBoxGroup::parseSingleValue( |
|
sashab
2017/01/19 00:41:59
The naming of this one is hard. 'Widows' and 'orph
nainar
2017/01/19 00:57:23
Done
|
| + CSSParserTokenRange& range, |
| + const CSSParserContext* context) { |
| + return CSSPropertyParserHelpers::consumePositiveInteger(range); |
| +} |
| + |
| +} // namespace blink |