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

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

Issue 338173003: Reduce SVG dependencies (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 years, 6 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 #include "core/css/Counter.h" 65 #include "core/css/Counter.h"
66 #include "core/css/HashTools.h" 66 #include "core/css/HashTools.h"
67 #include "core/css/Pair.h" 67 #include "core/css/Pair.h"
68 #include "core/css/Rect.h" 68 #include "core/css/Rect.h"
69 #include "core/css/RuntimeCSSEnabled.h" 69 #include "core/css/RuntimeCSSEnabled.h"
70 #include "core/css/parser/CSSParserIdioms.h" 70 #include "core/css/parser/CSSParserIdioms.h"
71 #include "core/html/parser/HTMLParserIdioms.h" 71 #include "core/html/parser/HTMLParserIdioms.h"
72 #include "core/inspector/InspectorInstrumentation.h" 72 #include "core/inspector/InspectorInstrumentation.h"
73 #include "core/rendering/RenderTheme.h" 73 #include "core/rendering/RenderTheme.h"
74 #include "core/svg/SVGPaint.h" 74 #include "core/svg/SVGPaint.h"
75 #include "core/svg/SVGParserUtilities.h"
76 #include "platform/FloatConversion.h" 75 #include "platform/FloatConversion.h"
77 #include "platform/RuntimeEnabledFeatures.h" 76 #include "platform/RuntimeEnabledFeatures.h"
78 #include "wtf/BitArray.h" 77 #include "wtf/BitArray.h"
79 #include "wtf/HexNumber.h" 78 #include "wtf/HexNumber.h"
80 #include "wtf/text/StringBuffer.h" 79 #include "wtf/text/StringBuffer.h"
81 #include "wtf/text/StringBuilder.h" 80 #include "wtf/text/StringBuilder.h"
82 #include "wtf/text/StringImpl.h" 81 #include "wtf/text/StringImpl.h"
83 #include "wtf/text/TextEncoding.h" 82 #include "wtf/text/TextEncoding.h"
84 #include <limits.h> 83 #include <limits.h>
85 84
(...skipping 8344 matching lines...) Expand 10 before | Expand all | Expand 10 after
8430 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill)); 8429 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill));
8431 if (!seenStroke) 8430 if (!seenStroke)
8432 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke) ); 8431 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke) );
8433 if (!seenMarkers) 8432 if (!seenMarkers)
8434 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers )); 8433 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers ));
8435 8434
8436 return parsedValues.release(); 8435 return parsedValues.release();
8437 } 8436 }
8438 8437
8439 } // namespace WebCore 8438 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/parser/BisonCSSParser-in.cpp ('k') | Source/core/css/resolver/StyleBuilderCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698