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

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

Issue 2642013002: Implements CSSPropertyAPI for the shape-outside property. (Closed)
Patch Set: Fix Utils 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
« no previous file with comments | « third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIShapeOutside.cpp
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIShapeOutside.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIShapeOutside.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..7c6c7ad4ea432a97fe524dc6a355bca2db261aab
--- /dev/null
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIShapeOutside.cpp
@@ -0,0 +1,37 @@
+// 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/CSSPropertyAPIShapeOutside.h"
+
+#include "core/css/CSSValueList.h"
+#include "core/css/parser/CSSParserContext.h"
+#include "core/css/parser/CSSPropertyParserHelpers.h"
+#include "core/css/properties/CSSPropertyShapeUtils.h"
+
+namespace blink {
+
+using namespace CSSPropertyParserHelpers;
+
+const CSSValue* CSSPropertyAPIShapeOutside::parseSingleValue(
+ CSSParserTokenRange& range,
+ const CSSParserContext* context) {
+ if (CSSValue* imageValue = consumeImageOrNone(range, context))
+ return imageValue;
+ CSSValueList* list = CSSValueList::createSpaceSeparated();
+ if (CSSValue* boxValue = consumeShapeBox(range))
+ list->append(*boxValue);
+ if (CSSValue* shapeValue =
+ CSSPropertyShapeUtils::consumeBasicShape(range, context)) {
+ list->append(*shapeValue);
+ if (list->length() < 2) {
+ if (CSSValue* boxValue = consumeShapeBox(range))
+ list->append(*boxValue);
+ }
+ }
+ if (!list->length())
+ return nullptr;
+ return list;
+}
+
+} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698