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

Side by Side Diff: Source/core/css/parser/CSSPropertyParser.cpp

Issue 563893002: Revert of Revert of Split out CSSParser public API (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. 8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
9 * Copyright (C) 2012 Intel Corporation. All rights reserved. 9 * Copyright (C) 2012 Intel Corporation. All rights reserved.
10 * 10 *
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 #include "core/css/CSSShadowValue.h" 58 #include "core/css/CSSShadowValue.h"
59 #include "core/css/CSSTimingFunctionValue.h" 59 #include "core/css/CSSTimingFunctionValue.h"
60 #include "core/css/CSSTransformValue.h" 60 #include "core/css/CSSTransformValue.h"
61 #include "core/css/CSSUnicodeRangeValue.h" 61 #include "core/css/CSSUnicodeRangeValue.h"
62 #include "core/css/CSSValueList.h" 62 #include "core/css/CSSValueList.h"
63 #include "core/css/CSSValuePool.h" 63 #include "core/css/CSSValuePool.h"
64 #include "core/css/Counter.h" 64 #include "core/css/Counter.h"
65 #include "core/css/HashTools.h" 65 #include "core/css/HashTools.h"
66 #include "core/css/Pair.h" 66 #include "core/css/Pair.h"
67 #include "core/css/Rect.h" 67 #include "core/css/Rect.h"
68 #include "core/css/parser/BisonCSSParser.h"
69 #include "core/css/parser/CSSParserIdioms.h" 68 #include "core/css/parser/CSSParserIdioms.h"
70 #include "core/css/parser/CSSParserValues.h" 69 #include "core/css/parser/CSSParserValues.h"
71 #include "core/frame/UseCounter.h" 70 #include "core/frame/UseCounter.h"
72 #include "core/html/parser/HTMLParserIdioms.h" 71 #include "core/html/parser/HTMLParserIdioms.h"
73 #include "core/inspector/InspectorInstrumentation.h" 72 #include "core/inspector/InspectorInstrumentation.h"
74 #include "core/rendering/RenderTheme.h" 73 #include "core/rendering/RenderTheme.h"
75 #include "platform/FloatConversion.h" 74 #include "platform/FloatConversion.h"
76 #include "platform/RuntimeEnabledFeatures.h" 75 #include "platform/RuntimeEnabledFeatures.h"
77 #include "wtf/BitArray.h" 76 #include "wtf/BitArray.h"
78 #include "wtf/HexNumber.h" 77 #include "wtf/HexNumber.h"
(...skipping 3871 matching lines...) Expand 10 before | Expand all | Expand 10 after
3950 if (radii[3]) 3949 if (radii[3])
3951 return; 3950 return;
3952 if (!radii[2]) { 3951 if (!radii[2]) {
3953 if (!radii[1]) 3952 if (!radii[1])
3954 radii[1] = radii[0]; 3953 radii[1] = radii[0];
3955 radii[2] = radii[0]; 3954 radii[2] = radii[0];
3956 } 3955 }
3957 radii[3] = radii[1]; 3956 radii[3] = radii[1];
3958 } 3957 }
3959 3958
3960 // FIXME: This should be refactored with CSSParser::parseBorderRadius. 3959 // FIXME: This should be refactored with parseBorderRadius.
3961 // CSSParser::parseBorderRadius contains support for some legacy radius construc tion. 3960 // parseBorderRadius contains support for some legacy radius construction.
3962 PassRefPtrWillBeRawPtr<CSSBasicShape> CSSPropertyParser::parseInsetRoundedCorner s(PassRefPtrWillBeRawPtr<CSSBasicShapeInset> shape, CSSParserValueList* args) 3961 PassRefPtrWillBeRawPtr<CSSBasicShape> CSSPropertyParser::parseInsetRoundedCorner s(PassRefPtrWillBeRawPtr<CSSBasicShapeInset> shape, CSSParserValueList* args)
3963 { 3962 {
3964 CSSParserValue* argument = args->next(); 3963 CSSParserValue* argument = args->next();
3965 3964
3966 if (!argument) 3965 if (!argument)
3967 return nullptr; 3966 return nullptr;
3968 3967
3969 Vector<CSSParserValue*> radiusArguments; 3968 Vector<CSSParserValue*> radiusArguments;
3970 while (argument) { 3969 while (argument) {
3971 radiusArguments.append(argument); 3970 radiusArguments.append(argument);
(...skipping 4224 matching lines...) Expand 10 before | Expand all | Expand 10 after
8196 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill)); 8195 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill));
8197 if (!seenStroke) 8196 if (!seenStroke)
8198 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke) ); 8197 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke) );
8199 if (!seenMarkers) 8198 if (!seenMarkers)
8200 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers )); 8199 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers ));
8201 8200
8202 return parsedValues.release(); 8201 return parsedValues.release();
8203 } 8202 }
8204 8203
8205 } // namespace blink 8204 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/css/parser/CSSParser.cpp ('k') | Source/core/css/resolver/FilterOperationResolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698