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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationDelay(); | 121 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationDelay(); |
122 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationDirection(); | 122 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationDirection(); |
123 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationDuration(); | 123 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationDuration(); |
124 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationFillMode(); | 124 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationFillMode(); |
125 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationIterationCount(); | 125 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationIterationCount(); |
126 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationName(); | 126 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationName(); |
127 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationPlayState(); | 127 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationPlayState(); |
128 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationProperty(); | 128 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationProperty(); |
129 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationTimingFunction(); | 129 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationTimingFunction(); |
130 | 130 |
131 bool parseWebkitTransformOriginShorthand(bool important); | |
132 bool parseCubicBezierTimingFunctionValue(CSSParserValueList*& args, double&
result); | 131 bool parseCubicBezierTimingFunctionValue(CSSParserValueList*& args, double&
result); |
133 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationProperty(CSSPropertyID); | 132 PassRefPtrWillBeRawPtr<CSSValue> parseAnimationProperty(CSSPropertyID); |
134 PassRefPtrWillBeRawPtr<CSSValueList> parseAnimationPropertyList(CSSPropertyI
D); | 133 PassRefPtrWillBeRawPtr<CSSValueList> parseAnimationPropertyList(CSSPropertyI
D); |
135 bool parseTransitionShorthand(CSSPropertyID, bool important); | 134 bool parseTransitionShorthand(CSSPropertyID, bool important); |
136 bool parseAnimationShorthand(CSSPropertyID, bool important); | 135 bool parseAnimationShorthand(CSSPropertyID, bool important); |
137 | 136 |
138 PassRefPtrWillBeRawPtr<CSSValue> parseColumnWidth(); | 137 PassRefPtrWillBeRawPtr<CSSValue> parseColumnWidth(); |
139 PassRefPtrWillBeRawPtr<CSSValue> parseColumnCount(); | 138 PassRefPtrWillBeRawPtr<CSSValue> parseColumnCount(); |
140 bool parseColumnsShorthand(bool important); | 139 bool parseColumnsShorthand(bool important); |
141 | 140 |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 friend PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseGradientColorOrKeyword
(CSSPropertyParser*, CSSParserValue*); | 378 friend PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseGradientColorOrKeyword
(CSSPropertyParser*, CSSParserValue*); |
380 }; | 379 }; |
381 | 380 |
382 CSSPropertyID cssPropertyID(const CSSParserString&); | 381 CSSPropertyID cssPropertyID(const CSSParserString&); |
383 CSSPropertyID cssPropertyID(const String&); | 382 CSSPropertyID cssPropertyID(const String&); |
384 CSSValueID cssValueKeywordID(const CSSParserString&); | 383 CSSValueID cssValueKeywordID(const CSSParserString&); |
385 | 384 |
386 } // namespace blink | 385 } // namespace blink |
387 | 386 |
388 #endif // CSSPropertyParser_h | 387 #endif // CSSPropertyParser_h |
OLD | NEW |