| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. | 3 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. |
| 4 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
| 5 * Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserve
d. | 5 * Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserve
d. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationDelay(); | 130 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationDelay(); |
| 131 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationDirection(); | 131 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationDirection(); |
| 132 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationDuration(); | 132 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationDuration(); |
| 133 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationFillMode(); | 133 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationFillMode(); |
| 134 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationIterationCount(); | 134 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationIterationCount(); |
| 135 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationName(); | 135 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationName(); |
| 136 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationPlayState(); | 136 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationPlayState(); |
| 137 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationProperty(AnimationParseContex
t&); | 137 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationProperty(AnimationParseContex
t&); |
| 138 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationTimingFunction(); | 138 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationTimingFunction(); |
| 139 | 139 |
| 140 bool parseTransformOriginShorthand(RefPtrWillBeRawPtr<CSSValue>&, RefPtrWill
BeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValue>&); | 140 bool parseWebkitTransformOriginShorthand(RefPtrWillBeRawPtr<CSSValue>&, RefP
trWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValue>&); |
| 141 bool parseCubicBezierTimingFunctionValue(CSSParserValueList*& args, double&
result); | 141 bool parseCubicBezierTimingFunctionValue(CSSParserValueList*& args, double&
result); |
| 142 bool parseAnimationProperty(CSSPropertyID, RefPtrWillBeRawPtr<CSSValue>&, An
imationParseContext&); | 142 bool parseAnimationProperty(CSSPropertyID, RefPtrWillBeRawPtr<CSSValue>&, An
imationParseContext&); |
| 143 bool parseTransitionShorthand(CSSPropertyID, bool important); | 143 bool parseTransitionShorthand(CSSPropertyID, bool important); |
| 144 bool parseAnimationShorthand(CSSPropertyID, bool important); | 144 bool parseAnimationShorthand(CSSPropertyID, bool important); |
| 145 | 145 |
| 146 PassRefPtrWillBeRawPtr<CSSValue> parseColumnWidth(); | 146 PassRefPtrWillBeRawPtr<CSSValue> parseColumnWidth(); |
| 147 PassRefPtrWillBeRawPtr<CSSValue> parseColumnCount(); | 147 PassRefPtrWillBeRawPtr<CSSValue> parseColumnCount(); |
| 148 bool parseColumnsShorthand(bool important); | 148 bool parseColumnsShorthand(bool important); |
| 149 | 149 |
| 150 PassRefPtrWillBeRawPtr<CSSValue> parseGridPosition(); | 150 PassRefPtrWillBeRawPtr<CSSValue> parseGridPosition(); |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 PassRefPtrWillBeRawPtr<CSSValue> parseImageSet(CSSParserValueList*); | 234 PassRefPtrWillBeRawPtr<CSSValue> parseImageSet(CSSParserValueList*); |
| 235 | 235 |
| 236 bool parseWillChange(bool important); | 236 bool parseWillChange(bool important); |
| 237 | 237 |
| 238 PassRefPtrWillBeRawPtr<CSSValueList> parseFilter(); | 238 PassRefPtrWillBeRawPtr<CSSValueList> parseFilter(); |
| 239 PassRefPtrWillBeRawPtr<CSSFilterValue> parseBuiltinFilterArguments(CSSParser
ValueList*, CSSFilterValue::FilterOperationType); | 239 PassRefPtrWillBeRawPtr<CSSFilterValue> parseBuiltinFilterArguments(CSSParser
ValueList*, CSSFilterValue::FilterOperationType); |
| 240 | 240 |
| 241 static bool isBlendMode(CSSValueID); | 241 static bool isBlendMode(CSSValueID); |
| 242 static bool isCompositeOperator(CSSValueID); | 242 static bool isCompositeOperator(CSSValueID); |
| 243 | 243 |
| 244 PassRefPtrWillBeRawPtr<CSSValueList> parseTransform(); | 244 PassRefPtrWillBeRawPtr<CSSValueList> parseTransformOrigin(); |
| 245 PassRefPtrWillBeRawPtr<CSSValue> parseTransformValue(CSSParserValue*); | 245 PassRefPtrWillBeRawPtr<CSSValueList> parseTransform(CSSPropertyID); |
| 246 bool parseTransformOrigin(CSSPropertyID propId, CSSPropertyID& propId1, CSSP
ropertyID& propId2, CSSPropertyID& propId3, RefPtrWillBeRawPtr<CSSValue>&, RefPt
rWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValue>&); | 246 PassRefPtrWillBeRawPtr<CSSValue> parseTransformValue(CSSPropertyID, CSSParse
rValue*); |
| 247 bool parsePerspectiveOrigin(CSSPropertyID propId, CSSPropertyID& propId1, CS
SPropertyID& propId2, RefPtrWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValu
e>&); | 247 bool parseWebkitTransformOrigin(CSSPropertyID propId, CSSPropertyID& propId1
, CSSPropertyID& propId2, CSSPropertyID& propId3, RefPtrWillBeRawPtr<CSSValue>&,
RefPtrWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValue>&); |
| 248 bool parseWebkitPerspectiveOrigin(CSSPropertyID propId, CSSPropertyID& propI
d1, CSSPropertyID& propId2, RefPtrWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<C
SSValue>&); |
| 248 | 249 |
| 249 bool parseTextEmphasisStyle(bool important); | 250 bool parseTextEmphasisStyle(bool important); |
| 250 | 251 |
| 251 bool parseTouchAction(bool important); | 252 bool parseTouchAction(bool important); |
| 252 | 253 |
| 253 void addTextDecorationProperty(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValu
e>, bool important); | 254 void addTextDecorationProperty(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValu
e>, bool important); |
| 254 bool parseTextDecoration(CSSPropertyID propId, bool important); | 255 bool parseTextDecoration(CSSPropertyID propId, bool important); |
| 255 bool parseTextUnderlinePosition(bool important); | 256 bool parseTextUnderlinePosition(bool important); |
| 256 | 257 |
| 257 PassRefPtrWillBeRawPtr<CSSValue> parseTextIndent(); | 258 PassRefPtrWillBeRawPtr<CSSValue> parseTextIndent(); |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 CSSPropertyID cssPropertyID(const CSSParserString&); | 403 CSSPropertyID cssPropertyID(const CSSParserString&); |
| 403 CSSPropertyID cssPropertyID(const String&); | 404 CSSPropertyID cssPropertyID(const String&); |
| 404 CSSValueID cssValueKeywordID(const CSSParserString&); | 405 CSSValueID cssValueKeywordID(const CSSParserString&); |
| 405 | 406 |
| 406 bool isKeywordPropertyID(CSSPropertyID); | 407 bool isKeywordPropertyID(CSSPropertyID); |
| 407 bool isValidKeywordPropertyAndValue(CSSPropertyID, int valueID, const CSSParserC
ontext&); | 408 bool isValidKeywordPropertyAndValue(CSSPropertyID, int valueID, const CSSParserC
ontext&); |
| 408 | 409 |
| 409 } // namespace WebCore | 410 } // namespace WebCore |
| 410 | 411 |
| 411 #endif // CSSPropertyParser_h | 412 #endif // CSSPropertyParser_h |
| OLD | NEW |