Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Unified Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIBoxGroup.cpp

Issue 2639303004: Implements CSSPropertyAPI for the fragmentation element properties. (Closed)
Patch Set: remove unneeded import Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698