| 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 25 matching lines...) Expand all Loading... |
| 36 #include "core/css/CSSSelectorList.h" | 36 #include "core/css/CSSSelectorList.h" |
| 37 #include "core/css/MediaList.h" | 37 #include "core/css/MediaList.h" |
| 38 #include "core/css/MediaQueryExp.h" | 38 #include "core/css/MediaQueryExp.h" |
| 39 #include "core/css/StyleRule.h" | 39 #include "core/css/StyleRule.h" |
| 40 #include "core/css/StyleSheetContents.h" | 40 #include "core/css/StyleSheetContents.h" |
| 41 #include "core/dom/Document.h" | 41 #include "core/dom/Document.h" |
| 42 #include "wtf/FastMalloc.h" | 42 #include "wtf/FastMalloc.h" |
| 43 #include <stdlib.h> | 43 #include <stdlib.h> |
| 44 #include <string.h> | 44 #include <string.h> |
| 45 | 45 |
| 46 using namespace WebCore; | 46 using namespace blink; |
| 47 using namespace HTMLNames; | 47 using namespace HTMLNames; |
| 48 | 48 |
| 49 #define YYMALLOC fastMalloc | 49 #define YYMALLOC fastMalloc |
| 50 #define YYFREE fastFree | 50 #define YYFREE fastFree |
| 51 | 51 |
| 52 #define YYENABLE_NLS 0 | 52 #define YYENABLE_NLS 0 |
| 53 #define YYLTYPE_IS_TRIVIAL 1 | 53 #define YYLTYPE_IS_TRIVIAL 1 |
| 54 #define YYMAXDEPTH 10000 | 54 #define YYMAXDEPTH 10000 |
| 55 #define YYDEBUG 0 | 55 #define YYDEBUG 0 |
| 56 | 56 |
| (...skipping 1766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1823 ; | 1823 ; |
| 1824 | 1824 |
| 1825 rule_error_recovery: | 1825 rule_error_recovery: |
| 1826 /* empty */ | 1826 /* empty */ |
| 1827 | rule_error_recovery error | 1827 | rule_error_recovery error |
| 1828 | rule_error_recovery invalid_square_brackets_block | 1828 | rule_error_recovery invalid_square_brackets_block |
| 1829 | rule_error_recovery invalid_parentheses_block | 1829 | rule_error_recovery invalid_parentheses_block |
| 1830 ; | 1830 ; |
| 1831 | 1831 |
| 1832 %% | 1832 %% |
| OLD | NEW |