| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 bool parseAnimationProperty(CSSPropertyID, RefPtr<CSSValue>&, AnimationParse
Context&); | 160 bool parseAnimationProperty(CSSPropertyID, RefPtr<CSSValue>&, AnimationParse
Context&); |
| 161 bool parseTransitionShorthand(CSSPropertyID, bool important); | 161 bool parseTransitionShorthand(CSSPropertyID, bool important); |
| 162 bool parseAnimationShorthand(bool important); | 162 bool parseAnimationShorthand(bool important); |
| 163 | 163 |
| 164 bool cssGridLayoutEnabled() const; | 164 bool cssGridLayoutEnabled() const; |
| 165 bool parseGridItemPositionShorthand(CSSPropertyID, bool important); | 165 bool parseGridItemPositionShorthand(CSSPropertyID, bool important); |
| 166 bool parseGridTrackList(CSSPropertyID, bool important); | 166 bool parseGridTrackList(CSSPropertyID, bool important); |
| 167 PassRefPtr<CSSPrimitiveValue> parseGridTrackSize(); | 167 PassRefPtr<CSSPrimitiveValue> parseGridTrackSize(); |
| 168 PassRefPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*); | 168 PassRefPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*); |
| 169 | 169 |
| 170 bool parseDashboardRegions(CSSPropertyID, bool important); | |
| 171 | |
| 172 bool parseClipShape(CSSPropertyID, bool important); | 170 bool parseClipShape(CSSPropertyID, bool important); |
| 173 | 171 |
| 174 bool parseBasicShape(CSSPropertyID, bool important); | 172 bool parseBasicShape(CSSPropertyID, bool important); |
| 175 PassRefPtr<CSSBasicShape> parseBasicShapeRectangle(CSSParserValueList* args)
; | 173 PassRefPtr<CSSBasicShape> parseBasicShapeRectangle(CSSParserValueList* args)
; |
| 176 PassRefPtr<CSSBasicShape> parseBasicShapeCircle(CSSParserValueList* args); | 174 PassRefPtr<CSSBasicShape> parseBasicShapeCircle(CSSParserValueList* args); |
| 177 PassRefPtr<CSSBasicShape> parseBasicShapeEllipse(CSSParserValueList* args); | 175 PassRefPtr<CSSBasicShape> parseBasicShapeEllipse(CSSParserValueList* args); |
| 178 PassRefPtr<CSSBasicShape> parseBasicShapePolygon(CSSParserValueList* args); | 176 PassRefPtr<CSSBasicShape> parseBasicShapePolygon(CSSParserValueList* args); |
| 179 | 177 |
| 180 bool parseFont(bool important); | 178 bool parseFont(bool important); |
| 181 PassRefPtr<CSSValueList> parseFontFamily(); | 179 PassRefPtr<CSSValueList> parseFontFamily(); |
| (...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 } | 735 } |
| 738 | 736 |
| 739 inline int cssyylex(void* yylval, CSSParser* parser) | 737 inline int cssyylex(void* yylval, CSSParser* parser) |
| 740 { | 738 { |
| 741 return parser->lex(yylval); | 739 return parser->lex(yylval); |
| 742 } | 740 } |
| 743 | 741 |
| 744 } // namespace WebCore | 742 } // namespace WebCore |
| 745 | 743 |
| 746 #endif // CSSParser_h | 744 #endif // CSSParser_h |
| OLD | NEW |