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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.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
Index: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
index 25fc518381ba7fd561ecb36261ffc63c6f8caa4d..cdc811507842d9697ddd6bd6728ae9c66e8f4108 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
@@ -1498,26 +1498,6 @@ static CSSValue* consumeClipPath(CSSParserTokenRange& range,
return CSSPropertyShapeUtils::consumeBasicShape(range, context);
}
-static CSSValue* consumeShapeOutside(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;
-}
-
static CSSValue* consumeContentDistributionOverflowPosition(
CSSParserTokenRange& range) {
if (identMatches<CSSValueNormal, CSSValueBaseline, CSSValueLastBaseline>(
@@ -2641,8 +2621,6 @@ const CSSValue* CSSPropertyParser::parseSingleValue(
return consumeScrollSnapPoints(m_range, m_context->mode());
case CSSPropertyOrder:
return consumeInteger(m_range);
- case CSSPropertyShapeOutside:
- return consumeShapeOutside(m_range, m_context);
case CSSPropertyClipPath:
return consumeClipPath(m_range, m_context);
case CSSPropertyJustifyContent:

Powered by Google App Engine
This is Rietveld 408576698