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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 PassRefPtrWillBeRawPtr<CSSValue> parseImageSet(CSSParserValueList*); | 230 PassRefPtrWillBeRawPtr<CSSValue> parseImageSet(CSSParserValueList*); |
231 | 231 |
232 bool parseWillChange(bool important); | 232 bool parseWillChange(bool important); |
233 | 233 |
234 PassRefPtrWillBeRawPtr<CSSValueList> parseFilter(); | 234 PassRefPtrWillBeRawPtr<CSSValueList> parseFilter(); |
235 PassRefPtrWillBeRawPtr<CSSFilterValue> parseBuiltinFilterArguments(CSSParser
ValueList*, CSSFilterValue::FilterOperationType); | 235 PassRefPtrWillBeRawPtr<CSSFilterValue> parseBuiltinFilterArguments(CSSParser
ValueList*, CSSFilterValue::FilterOperationType); |
236 | 236 |
237 static bool isBlendMode(CSSValueID); | 237 static bool isBlendMode(CSSValueID); |
238 static bool isCompositeOperator(CSSValueID); | 238 static bool isCompositeOperator(CSSValueID); |
239 | 239 |
240 PassRefPtrWillBeRawPtr<CSSValueList> parseTransform(); | |
241 PassRefPtrWillBeRawPtr<CSSValue> parseTransformValue(CSSParserValue*); | |
242 bool parseTransformOrigin(CSSPropertyID propId, CSSPropertyID& propId1, CSSP
ropertyID& propId2, CSSPropertyID& propId3, RefPtrWillBeRawPtr<CSSValue>&, RefPt
rWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValue>&); | 240 bool parseTransformOrigin(CSSPropertyID propId, CSSPropertyID& propId1, CSSP
ropertyID& propId2, CSSPropertyID& propId3, RefPtrWillBeRawPtr<CSSValue>&, RefPt
rWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValue>&); |
243 bool parsePerspectiveOrigin(CSSPropertyID propId, CSSPropertyID& propId1, CS
SPropertyID& propId2, RefPtrWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValu
e>&); | 241 bool parsePerspectiveOrigin(CSSPropertyID propId, CSSPropertyID& propId1, CS
SPropertyID& propId2, RefPtrWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValu
e>&); |
| 242 PassRefPtrWillBeRawPtr<CSSValueList> parseTransform(CSSPropertyID); |
| 243 PassRefPtrWillBeRawPtr<CSSValue> parseTransformValue(CSSPropertyID, CSSParse
rValue*); |
244 | 244 |
245 bool parseTextEmphasisStyle(bool important); | 245 bool parseTextEmphasisStyle(bool important); |
246 | 246 |
247 bool parseTouchAction(bool important); | 247 bool parseTouchAction(bool important); |
248 | 248 |
249 void addTextDecorationProperty(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValu
e>, bool important); | 249 void addTextDecorationProperty(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValu
e>, bool important); |
250 bool parseTextDecoration(CSSPropertyID propId, bool important); | 250 bool parseTextDecoration(CSSPropertyID propId, bool important); |
251 bool parseTextUnderlinePosition(bool important); | 251 bool parseTextUnderlinePosition(bool important); |
252 | 252 |
253 PassRefPtrWillBeRawPtr<CSSValue> parseTextIndent(); | 253 PassRefPtrWillBeRawPtr<CSSValue> parseTextIndent(); |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 CSSPropertyID cssPropertyID(const CSSParserString&); | 395 CSSPropertyID cssPropertyID(const CSSParserString&); |
396 CSSPropertyID cssPropertyID(const String&); | 396 CSSPropertyID cssPropertyID(const String&); |
397 CSSValueID cssValueKeywordID(const CSSParserString&); | 397 CSSValueID cssValueKeywordID(const CSSParserString&); |
398 | 398 |
399 bool isKeywordPropertyID(CSSPropertyID); | 399 bool isKeywordPropertyID(CSSPropertyID); |
400 bool isValidKeywordPropertyAndValue(CSSPropertyID, int valueID, const CSSParserC
ontext&); | 400 bool isValidKeywordPropertyAndValue(CSSPropertyID, int valueID, const CSSParserC
ontext&); |
401 | 401 |
402 } // namespace WebCore | 402 } // namespace WebCore |
403 | 403 |
404 #endif // CSSPropertyParser_h | 404 #endif // CSSPropertyParser_h |
OLD | NEW |