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 |
11 * modify it under the terms of the GNU Lesser General Public | 11 * modify it under the terms of the GNU Lesser General Public |
12 * License as published by the Free Software Foundation; either | 12 * License as published by the Free Software Foundation; either |
13 * version 2 of the License, or (at your option) any later version. | 13 * version 2 of the License, or (at your option) any later version. |
14 * | 14 * |
15 * This library is distributed in the hope that it will be useful, | 15 * This library is distributed in the hope that it will be useful, |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
18 * Lesser General Public License for more details. | 18 * Lesser General Public License for more details. |
19 * | 19 * |
20 * You should have received a copy of the GNU Lesser General Public | 20 * You should have received a copy of the GNU Lesser General Public |
21 * License along with this library; if not, write to the Free Software | 21 * License along with this library; if not, write to the Free Software |
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U
SA | 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U
SA |
23 * | 23 * |
24 */ | 24 */ |
25 | 25 |
26 #include "config.h" | |
27 | |
28 #include "CSSPropertyNames.h" | 26 #include "CSSPropertyNames.h" |
29 #include "core/css/CSSPrimitiveValue.h" | 27 #include "core/css/CSSPrimitiveValue.h" |
30 #include "core/css/CSSSelector.h" | 28 #include "core/css/CSSSelector.h" |
31 #include "core/css/CSSSelectorList.h" | 29 #include "core/css/CSSSelectorList.h" |
32 #include "core/css/StyleRule.h" | 30 #include "core/css/StyleRule.h" |
33 #include "core/css/StyleSheetContents.h" | 31 #include "core/css/StyleSheetContents.h" |
34 #include "core/css/parser/BisonCSSParser.h" | 32 #include "core/css/parser/BisonCSSParser.h" |
35 #include "core/css/parser/CSSParserMode.h" | 33 #include "core/css/parser/CSSParserMode.h" |
36 #include "core/dom/Document.h" | 34 #include "core/dom/Document.h" |
37 #include "wtf/FastMalloc.h" | 35 #include "wtf/FastMalloc.h" |
(...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1154 ; | 1152 ; |
1155 | 1153 |
1156 rule_error_recovery: | 1154 rule_error_recovery: |
1157 /* empty */ | 1155 /* empty */ |
1158 | rule_error_recovery error | 1156 | rule_error_recovery error |
1159 | rule_error_recovery invalid_square_brackets_block | 1157 | rule_error_recovery invalid_square_brackets_block |
1160 | rule_error_recovery invalid_parentheses_block | 1158 | rule_error_recovery invalid_parentheses_block |
1161 ; | 1159 ; |
1162 | 1160 |
1163 %% | 1161 %% |
OLD | NEW |