| 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 Apple Inc. All rights
reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple 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 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Lesser General Public | 10 * modify it under the terms of the GNU Lesser General Public |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "core/css/CSSParser.h" | 31 #include "core/css/CSSParser.h" |
| 32 #include "core/css/CSSParserMode.h" | 32 #include "core/css/CSSParserMode.h" |
| 33 #include "core/css/CSSPrimitiveValue.h" | 33 #include "core/css/CSSPrimitiveValue.h" |
| 34 #include "core/css/CSSSelector.h" | 34 #include "core/css/CSSSelector.h" |
| 35 #include "core/css/CSSSelectorList.h" | 35 #include "core/css/CSSSelectorList.h" |
| 36 #include "core/css/MediaList.h" | 36 #include "core/css/MediaList.h" |
| 37 #include "core/css/MediaQueryExp.h" | 37 #include "core/css/MediaQueryExp.h" |
| 38 #include "core/css/StyleRule.h" | 38 #include "core/css/StyleRule.h" |
| 39 #include "core/css/StyleSheetContents.h" | 39 #include "core/css/StyleSheetContents.h" |
| 40 #include "core/dom/Document.h" | 40 #include "core/dom/Document.h" |
| 41 #include <wtf/FastMalloc.h> | 41 #include "wtf/FastMalloc.h" |
| 42 #include <stdlib.h> | 42 #include <stdlib.h> |
| 43 #include <string.h> | 43 #include <string.h> |
| 44 | 44 |
| 45 using namespace WebCore; | 45 using namespace WebCore; |
| 46 using namespace HTMLNames; | 46 using namespace HTMLNames; |
| 47 | 47 |
| 48 #define YYMALLOC fastMalloc | 48 #define YYMALLOC fastMalloc |
| 49 #define YYFREE fastFree | 49 #define YYFREE fastFree |
| 50 | 50 |
| 51 #define YYENABLE_NLS 0 | 51 #define YYENABLE_NLS 0 |
| 52 #define YYLTYPE_IS_TRIVIAL 1 | 52 #define YYLTYPE_IS_TRIVIAL 1 |
| 53 #define YYMAXDEPTH 10000 | 53 #define YYMAXDEPTH 10000 |
| 54 #define YYDEBUG 0 | 54 #define YYDEBUG 0 |
| 55 | 55 |
| 56 #if YYDEBUG > 0 | 56 #if YYDEBUG > 0 |
| 57 #define YYPRINT(File,Type,Value) if (isCSSTokenAString(Type)) YYFPRINTF(File, "%
s", String((Value).string).utf8().data()) | 57 #define YYPRINT(File,Type,Value) if (isCSSTokenAString(Type)) YYFPRINTF(File, "%
s", String((Value).string).utf8().data()) |
| 58 #endif | 58 #endif |
| 59 | 59 |
| 60 %} | 60 %} |
| OLD | NEW |