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

Side by Side Diff: Source/core/css/CSSComputedStyleDeclaration.cpp

Issue 112933010: Split out CSSParser public API Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 24 matching lines...) Expand all
35 #include "core/css/CSSAspectRatioValue.h" 35 #include "core/css/CSSAspectRatioValue.h"
36 #include "core/css/CSSBorderImage.h" 36 #include "core/css/CSSBorderImage.h"
37 #include "core/css/CSSFilterValue.h" 37 #include "core/css/CSSFilterValue.h"
38 #include "core/css/CSSFontFeatureValue.h" 38 #include "core/css/CSSFontFeatureValue.h"
39 #include "core/css/CSSFontValue.h" 39 #include "core/css/CSSFontValue.h"
40 #include "core/css/CSSFunctionValue.h" 40 #include "core/css/CSSFunctionValue.h"
41 #include "core/css/CSSGridLineNamesValue.h" 41 #include "core/css/CSSGridLineNamesValue.h"
42 #include "core/css/CSSGridTemplateValue.h" 42 #include "core/css/CSSGridTemplateValue.h"
43 #include "core/css/CSSLineBoxContainValue.h" 43 #include "core/css/CSSLineBoxContainValue.h"
44 #include "core/css/CSSMixFunctionValue.h" 44 #include "core/css/CSSMixFunctionValue.h"
45 #include "core/css/parser/BisonCSSParser.h" 45 #include "core/css/parser/CSSParser.h"
46 #include "core/css/CSSPrimitiveValue.h" 46 #include "core/css/CSSPrimitiveValue.h"
47 #include "core/css/CSSPrimitiveValueMappings.h" 47 #include "core/css/CSSPrimitiveValueMappings.h"
48 #include "core/css/CSSReflectValue.h" 48 #include "core/css/CSSReflectValue.h"
49 #include "core/css/CSSSelector.h" 49 #include "core/css/CSSSelector.h"
50 #include "core/css/CSSShadowValue.h" 50 #include "core/css/CSSShadowValue.h"
51 #include "core/css/CSSTimingFunctionValue.h" 51 #include "core/css/CSSTimingFunctionValue.h"
52 #include "core/css/CSSTransformValue.h" 52 #include "core/css/CSSTransformValue.h"
53 #include "core/css/CSSValueList.h" 53 #include "core/css/CSSValueList.h"
54 #include "core/css/CSSValuePool.h" 54 #include "core/css/CSSValuePool.h"
55 #include "core/css/Pair.h" 55 #include "core/css/Pair.h"
(...skipping 3196 matching lines...) Expand 10 before | Expand all | Expand 10 after
3252 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin, 3252 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin,
3253 CSSPropertyB ackgroundClip }; 3253 CSSPropertyB ackgroundClip };
3254 3254
3255 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); 3255 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated();
3256 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash Seperator)))); 3256 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash Seperator))));
3257 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe perator)))); 3257 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe perator))));
3258 return list.release(); 3258 return list.release();
3259 } 3259 }
3260 3260
3261 } // namespace WebCore 3261 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698