| 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" | 26 #include "config.h" |
| 27 | 27 |
| 28 #include "CSSPropertyNames.h" | 28 #include "CSSPropertyNames.h" |
| 29 #include "core/css/CSSKeyframeRule.h" | |
| 30 #include "core/css/CSSKeyframesRule.h" | |
| 31 #include "core/css/parser/BisonCSSParser.h" | |
| 32 #include "core/css/parser/CSSParserMode.h" | |
| 33 #include "core/css/CSSPrimitiveValue.h" | 29 #include "core/css/CSSPrimitiveValue.h" |
| 34 #include "core/css/CSSSelector.h" | 30 #include "core/css/CSSSelector.h" |
| 35 #include "core/css/CSSSelectorList.h" | 31 #include "core/css/CSSSelectorList.h" |
| 36 #include "core/css/MediaList.h" | 32 #include "core/css/MediaList.h" |
| 37 #include "core/css/MediaQueryExp.h" | 33 #include "core/css/MediaQueryExp.h" |
| 34 #include "core/css/StyleKeyframe.h" |
| 38 #include "core/css/StyleRule.h" | 35 #include "core/css/StyleRule.h" |
| 36 #include "core/css/StyleRuleKeyframes.h" |
| 39 #include "core/css/StyleSheetContents.h" | 37 #include "core/css/StyleSheetContents.h" |
| 38 #include "core/css/parser/BisonCSSParser.h" |
| 39 #include "core/css/parser/CSSParserMode.h" |
| 40 #include "core/dom/Document.h" | 40 #include "core/dom/Document.h" |
| 41 #include "sky/engine/core/css/MediaList.h" |
| 41 #include "wtf/FastMalloc.h" | 42 #include "wtf/FastMalloc.h" |
| 42 #include <stdlib.h> | 43 #include <stdlib.h> |
| 43 #include <string.h> | 44 #include <string.h> |
| 44 | 45 |
| 45 using namespace blink; | 46 using namespace blink; |
| 46 | 47 |
| 47 #define YYMALLOC fastMalloc | 48 #define YYMALLOC fastMalloc |
| 48 #define YYFREE fastFree | 49 #define YYFREE fastFree |
| 49 | 50 |
| 50 #define YYENABLE_NLS 0 | 51 #define YYENABLE_NLS 0 |
| (...skipping 1439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1490 ; | 1491 ; |
| 1491 | 1492 |
| 1492 rule_error_recovery: | 1493 rule_error_recovery: |
| 1493 /* empty */ | 1494 /* empty */ |
| 1494 | rule_error_recovery error | 1495 | rule_error_recovery error |
| 1495 | rule_error_recovery invalid_square_brackets_block | 1496 | rule_error_recovery invalid_square_brackets_block |
| 1496 | rule_error_recovery invalid_parentheses_block | 1497 | rule_error_recovery invalid_parentheses_block |
| 1497 ; | 1498 ; |
| 1498 | 1499 |
| 1499 %% | 1500 %% |
| OLD | NEW |