OLD | NEW |
---|---|
1 %{ | 1 %{ |
2 | 2 |
3 /* | 3 /* |
4 * Copyright (C) 2002-2003 Lars Knoll (knoll@kde.org) | 4 * Copyright (C) 2002-2003 Lars Knoll (knoll@kde.org) |
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 App le Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 App le Inc. All rights reserved. |
6 * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 6 * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
7 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
8 * Copyright (C) 2012 Intel Corporation. All rights reserved. | 8 * Copyright (C) 2012 Intel Corporation. All rights reserved. |
9 * | 9 * |
10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
81 Vector<OwnPtr<CSSParserSelector> >* selectorList; | 81 Vector<OwnPtr<CSSParserSelector> >* selectorList; |
82 CSSSelector::MarginBoxType marginBox; | 82 CSSSelector::MarginBoxType marginBox; |
83 CSSSelector::Relation relation; | 83 CSSSelector::Relation relation; |
84 MediaQuerySet* mediaList; | 84 MediaQuerySet* mediaList; |
85 MediaQuery* mediaQuery; | 85 MediaQuery* mediaQuery; |
86 MediaQuery::Restrictor mediaQueryRestrictor; | 86 MediaQuery::Restrictor mediaQueryRestrictor; |
87 MediaQueryExp* mediaQueryExp; | 87 MediaQueryExp* mediaQueryExp; |
88 CSSParserValue value; | 88 CSSParserValue value; |
89 CSSParserValueList* valueList; | 89 CSSParserValueList* valueList; |
90 StyleKeyframe* keyframe; | 90 StyleKeyframe* keyframe; |
91 Vector<RefPtr<StyleKeyframe> >* keyframeRuleList; | 91 WillBeHeapVector<RefPtrWillBeMember<StyleKeyframe> >* keyframeRuleList; |
haraken
2014/03/26 13:17:12
Can you move this up to line 80 so that the commen
wibling-chromium
2014/03/26 13:31:55
Done.
| |
92 float val; | 92 float val; |
93 CSSPropertyID id; | 93 CSSPropertyID id; |
94 CSSParserLocation location; | 94 CSSParserLocation location; |
95 } | 95 } |
96 | 96 |
97 %{ | 97 %{ |
98 | 98 |
99 static inline int cssyyerror(void*, const char*) | 99 static inline int cssyyerror(void*, const char*) |
100 { | 100 { |
101 return 1; | 101 return 1; |
(...skipping 1794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1896 ; | 1896 ; |
1897 | 1897 |
1898 rule_error_recovery: | 1898 rule_error_recovery: |
1899 /* empty */ | 1899 /* empty */ |
1900 | rule_error_recovery error | 1900 | rule_error_recovery error |
1901 | rule_error_recovery invalid_square_brackets_block | 1901 | rule_error_recovery invalid_square_brackets_block |
1902 | rule_error_recovery invalid_parentheses_block | 1902 | rule_error_recovery invalid_parentheses_block |
1903 ; | 1903 ; |
1904 | 1904 |
1905 %% | 1905 %% |
OLD | NEW |