summaryrefslogtreecommitdiffstats
path: root/tdehtml/css/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdehtml/css/parser.cpp')
-rw-r--r--tdehtml/css/parser.cpp3190
1 files changed, 3190 insertions, 0 deletions
diff --git a/tdehtml/css/parser.cpp b/tdehtml/css/parser.cpp
new file mode 100644
index 000000000..4cc238ee2
--- /dev/null
+++ b/tdehtml/css/parser.cpp
@@ -0,0 +1,3190 @@
+/* A Bison parser, made by GNU Bison 2.5. */
+
+/* Bison implementation for Yacc-like parsers in C
+
+ Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+/* As a special exception, you may create a larger work that contains
+ part or all of the Bison parser skeleton and distribute that work
+ under terms of your choice, so long as that work isn't itself a
+ parser generator using the skeleton or a modified version thereof
+ as a parser skeleton. Alternatively, if you modify or redistribute
+ the parser skeleton itself, you may (at your option) remove this
+ special exception, which will cause the skeleton and the resulting
+ Bison output files to be licensed under the GNU General Public
+ License without this special exception.
+
+ This special exception was added by the Free Software Foundation in
+ version 2.2 of Bison. */
+
+/* C LALR(1) parser skeleton written by Richard Stallman, by
+ simplifying the original so-called "semantic" parser. */
+
+/* All symbols defined below should begin with yy or YY, to avoid
+ infringing on user name space. This should be done even for local
+ variables, as they might otherwise be expanded by user macros.
+ There are some unavoidable exceptions within include files to
+ define necessary library symbols; they are noted "INFRINGES ON
+ USER NAME SPACE" below. */
+
+/* Identify Bison output. */
+#define YYBISON 1
+
+/* Bison version. */
+#define YYBISON_VERSION "2.5"
+
+/* Skeleton name. */
+#define YYSKELETON_NAME "yacc.c"
+
+/* Pure parsers. */
+#define YYPURE 1
+
+/* Push parsers. */
+#define YYPUSH 0
+
+/* Pull parsers. */
+#define YYPULL 1
+
+/* Using locations. */
+#define YYLSP_NEEDED 0
+
+/* Substitute the variable and function names. */
+#define yyparse cssyyparse
+#define yylex cssyylex
+#define yyerror cssyyerror
+#define yylval cssyylval
+#define yychar cssyychar
+#define yydebug cssyydebug
+#define yynerrs cssyynerrs
+
+
+/* Copy the first part of user declarations. */
+
+
+
+/*
+ * This file is part of the KDE libraries
+ * Copyright (C) 2002-2003 Lars Knoll (knoll@kde.org)
+ * Copyright (c) 2003 Apple Computer
+ * Copyright (C) 2003 Dirk Mueller (mueller@kde.org)
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+#include <string.h>
+#include <stdlib.h>
+
+#include <dom/dom_string.h>
+#include <xml/dom_docimpl.h>
+#include <css/cssstyleselector.h>
+#include <css/css_ruleimpl.h>
+#include <css/css_stylesheetimpl.h>
+#include <css/css_valueimpl.h>
+#include <misc/htmlhashes.h>
+#include "cssparser.h"
+
+#include <assert.h>
+#include <kdebug.h>
+//#define CSS_DEBUG
+
+using namespace DOM;
+
+//
+// The following file defines the function
+// const struct props *findProp(const char *word, int len)
+//
+// with 'props->id' a CSS property in the range from CSS_PROP_MIN to
+// (and including) CSS_PROP_TOTAL-1
+
+// turn off inlining to void warning with newer gcc
+#undef __inline
+#define __inline
+#include "cssproperties.c"
+#include "cssvalues.c"
+#undef __inline
+
+int DOM::getPropertyID(const char *tagStr, int len)
+{
+ const struct props *propsPtr = findProp(tagStr, len);
+ if (!propsPtr)
+ return 0;
+
+ return propsPtr->id;
+}
+
+static inline int getValueID(const char *tagStr, int len)
+{
+ const struct css_value *val = findValue(tagStr, len);
+ if (!val)
+ return 0;
+
+ return val->id;
+}
+
+
+#define YYDEBUG 0
+#undef YYMAXDEPTH
+#define YYPARSE_PARAM parser
+
+
+
+/* Enabling traces. */
+#ifndef YYDEBUG
+# define YYDEBUG 0
+#endif
+
+/* Enabling verbose error messages. */
+#ifdef YYERROR_VERBOSE
+# undef YYERROR_VERBOSE
+# define YYERROR_VERBOSE 1
+#else
+# define YYERROR_VERBOSE 0
+#endif
+
+/* Enabling the token table. */
+#ifndef YYTOKEN_TABLE
+# define YYTOKEN_TABLE 0
+#endif
+
+
+/* Tokens. */
+#ifndef YYTOKENTYPE
+# define YYTOKENTYPE
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
+ know about them. */
+ enum yytokentype {
+ UNIMPORTANT_TOK = 258,
+ S = 259,
+ SGML_CD = 260,
+ INCLUDES = 261,
+ DASHMATCH = 262,
+ BEGINSWITH = 263,
+ ENDSWITH = 264,
+ CONTAINS = 265,
+ STRING = 266,
+ IDENT = 267,
+ NTH = 268,
+ HASH = 269,
+ IMPORT_SYM = 270,
+ PAGE_SYM = 271,
+ MEDIA_SYM = 272,
+ FONT_FACE_SYM = 273,
+ CHARSET_SYM = 274,
+ NAMESPACE_SYM = 275,
+ TDEHTML_RULE_SYM = 276,
+ TDEHTML_DECLS_SYM = 277,
+ TDEHTML_VALUE_SYM = 278,
+ IMPORTANT_SYM = 279,
+ QEMS = 280,
+ EMS = 281,
+ EXS = 282,
+ PXS = 283,
+ CMS = 284,
+ MMS = 285,
+ INS = 286,
+ PTS = 287,
+ PCS = 288,
+ DEGS = 289,
+ RADS = 290,
+ GRADS = 291,
+ MSECS = 292,
+ SECS = 293,
+ HERZ = 294,
+ KHERZ = 295,
+ DIMEN = 296,
+ PERCENTAGE = 297,
+ FLOAT = 298,
+ INTEGER = 299,
+ URI = 300,
+ FUNCTION = 301,
+ NOTFUNCTION = 302,
+ UNICODERANGE = 303
+ };
+#endif
+
+
+
+#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
+typedef union YYSTYPE
+{
+
+
+ CSSRuleImpl *rule;
+ CSSSelector *selector;
+ TQPtrList<CSSSelector> *selectorList;
+ bool ok;
+ MediaListImpl *mediaList;
+ CSSMediaRuleImpl *mediaRule;
+ CSSRuleListImpl *ruleList;
+ ParseString string;
+ float val;
+ int prop_id;
+ unsigned int attribute;
+ unsigned int element;
+ unsigned int ns;
+ CSSSelector::Relation relation;
+ CSSSelector::Match match;
+ bool b;
+ char tok;
+ Value value;
+ ValueList *valueList;
+
+
+
+} YYSTYPE;
+# define YYSTYPE_IS_TRIVIAL 1
+# define yystype YYSTYPE /* obsolescent; will be withdrawn */
+# define YYSTYPE_IS_DECLARED 1
+#endif
+
+
+/* Copy the second part of user declarations. */
+
+
+
+static inline int cssyyerror(const char *x )
+{
+#ifdef CSS_DEBUG
+ tqDebug( "%s", x );
+#else
+ Q_UNUSED( x );
+#endif
+ return 1;
+}
+
+static int cssyylex( YYSTYPE *yylval ) {
+ return CSSParser::current()->lex( yylval );
+}
+
+#define null 1
+
+
+
+
+#ifdef short
+# undef short
+#endif
+
+#ifdef YYTYPE_UINT8
+typedef YYTYPE_UINT8 yytype_uint8;
+#else
+typedef unsigned char yytype_uint8;
+#endif
+
+#ifdef YYTYPE_INT8
+typedef YYTYPE_INT8 yytype_int8;
+#elif (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+typedef signed char yytype_int8;
+#else
+typedef short int yytype_int8;
+#endif
+
+#ifdef YYTYPE_UINT16
+typedef YYTYPE_UINT16 yytype_uint16;
+#else
+typedef unsigned short int yytype_uint16;
+#endif
+
+#ifdef YYTYPE_INT16
+typedef YYTYPE_INT16 yytype_int16;
+#else
+typedef short int yytype_int16;
+#endif
+
+#ifndef YYSIZE_T
+# ifdef __SIZE_TYPE__
+# define YYSIZE_T __SIZE_TYPE__
+# elif defined size_t
+# define YYSIZE_T size_t
+# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
+# define YYSIZE_T size_t
+# else
+# define YYSIZE_T unsigned int
+# endif
+#endif
+
+#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
+
+#ifndef YY_
+# if defined YYENABLE_NLS && YYENABLE_NLS
+# if ENABLE_NLS
+# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
+# define YY_(msgid) dgettext ("bison-runtime", msgid)
+# endif
+# endif
+# ifndef YY_
+# define YY_(msgid) msgid
+# endif
+#endif
+
+/* Suppress unused-variable warnings by "using" E. */
+#if ! defined lint || defined __GNUC__
+# define YYUSE(e) ((void) (e))
+#else
+# define YYUSE(e) /* empty */
+#endif
+
+/* Identity function, used to suppress warnings about constant conditions. */
+#ifndef lint
+# define YYID(n) (n)
+#else
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static int
+YYID (int yyi)
+#else
+static int
+YYID (yyi)
+ int yyi;
+#endif
+{
+ return yyi;
+}
+#endif
+
+#if ! defined yyoverflow || YYERROR_VERBOSE
+
+/* The parser invokes alloca or malloc; define the necessary symbols. */
+
+# ifdef YYSTACK_USE_ALLOCA
+# if YYSTACK_USE_ALLOCA
+# ifdef __GNUC__
+# define YYSTACK_ALLOC __builtin_alloca
+# elif defined __BUILTIN_VA_ARG_INCR
+# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
+# elif defined _AIX
+# define YYSTACK_ALLOC __alloca
+# elif defined _MSC_VER
+# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
+# define alloca _alloca
+# else
+# define YYSTACK_ALLOC alloca
+# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
+# ifndef EXIT_SUCCESS
+# define EXIT_SUCCESS 0
+# endif
+# endif
+# endif
+# endif
+# endif
+
+# ifdef YYSTACK_ALLOC
+ /* Pacify GCC's `empty if-body' warning. */
+# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
+# ifndef YYSTACK_ALLOC_MAXIMUM
+ /* The OS might guarantee only one guard page at the bottom of the stack,
+ and a page size can be as small as 4096 bytes. So we cannot safely
+ invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
+ to allow for a few compiler-allocated temporary stack slots. */
+# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
+# endif
+# else
+# define YYSTACK_ALLOC YYMALLOC
+# define YYSTACK_FREE YYFREE
+# ifndef YYSTACK_ALLOC_MAXIMUM
+# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
+# endif
+# if (defined __cplusplus && ! defined EXIT_SUCCESS \
+ && ! ((defined YYMALLOC || defined malloc) \
+ && (defined YYFREE || defined free)))
+# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
+# ifndef EXIT_SUCCESS
+# define EXIT_SUCCESS 0
+# endif
+# endif
+# ifndef YYMALLOC
+# define YYMALLOC malloc
+# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
+# endif
+# endif
+# ifndef YYFREE
+# define YYFREE free
+# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+void free (void *); /* INFRINGES ON USER NAME SPACE */
+# endif
+# endif
+# endif
+#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
+
+
+#if (! defined yyoverflow \
+ && (! defined __cplusplus \
+ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
+
+/* A type that is properly aligned for any stack member. */
+union yyalloc
+{
+ yytype_int16 yyss_alloc;
+ YYSTYPE yyvs_alloc;
+};
+
+/* The size of the maximum gap between one aligned stack and the next. */
+# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
+
+/* The size of an array large to enough to hold all stacks, each with
+ N elements. */
+# define YYSTACK_BYTES(N) \
+ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
+ + YYSTACK_GAP_MAXIMUM)
+
+# define YYCOPY_NEEDED 1
+
+/* Relocate STACK from its old location to the new one. The
+ local variables YYSIZE and YYSTACKSIZE give the old and new number of
+ elements in the stack, and YYPTR gives the new location of the
+ stack. Advance YYPTR to a properly aligned location for the next
+ stack. */
+# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
+ do \
+ { \
+ YYSIZE_T yynewbytes; \
+ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
+ Stack = &yyptr->Stack_alloc; \
+ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
+ yyptr += yynewbytes / sizeof (*yyptr); \
+ } \
+ while (YYID (0))
+
+#endif
+
+#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
+/* Copy COUNT objects from FROM to TO. The source and destination do
+ not overlap. */
+# ifndef YYCOPY
+# if defined __GNUC__ && 1 < __GNUC__
+# define YYCOPY(To, From, Count) \
+ __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
+# else
+# define YYCOPY(To, From, Count) \
+ do \
+ { \
+ YYSIZE_T yyi; \
+ for (yyi = 0; yyi < (Count); yyi++) \
+ (To)[yyi] = (From)[yyi]; \
+ } \
+ while (YYID (0))
+# endif
+# endif
+#endif /* !YYCOPY_NEEDED */
+
+/* YYFINAL -- State number of the termination state. */
+#define YYFINAL 16
+/* YYLAST -- Last index in YYTABLE. */
+#define YYLAST 479
+
+/* YYNTOKENS -- Number of terminals. */
+#define YYNTOKENS 67
+/* YYNNTS -- Number of nonterminals. */
+#define YYNNTS 54
+/* YYNRULES -- Number of rules. */
+#define YYNRULES 162
+/* YYNRULES -- Number of states. */
+#define YYNSTATES 305
+
+/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
+#define YYUNDEFTOK 2
+#define YYMAXUTOK 303
+
+#define YYTRANSLATE(YYX) \
+ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
+
+/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
+static const yytype_uint8 yytranslate[] =
+{
+ 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 64, 18, 58, 57, 61, 16, 65, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 15, 56,
+ 2, 63, 60, 2, 66, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 17, 2, 62, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 54, 19, 55, 59, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
+ 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
+ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
+ 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
+ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
+ 50, 51, 52, 53
+};
+
+#if YYDEBUG
+/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
+ YYRHS. */
+static const yytype_uint16 yyprhs[] =
+{
+ 0, 0, 3, 9, 12, 15, 18, 25, 28, 34,
+ 35, 38, 39, 42, 45, 46, 52, 56, 60, 61,
+ 65, 72, 76, 80, 81, 85, 92, 96, 100, 101,
+ 104, 105, 109, 111, 113, 115, 117, 119, 121, 124,
+ 126, 128, 129, 131, 133, 138, 141, 149, 150, 154,
+ 157, 161, 165, 169, 173, 176, 179, 182, 183, 185,
+ 187, 190, 192, 197, 200, 202, 206, 209, 211, 214,
+ 217, 220, 224, 227, 231, 236, 240, 242, 244, 246,
+ 249, 252, 254, 256, 258, 260, 263, 266, 271, 280,
+ 286, 296, 298, 300, 302, 304, 306, 308, 310, 312,
+ 315, 319, 324, 329, 334, 339, 345, 350, 355, 360,
+ 366, 372, 376, 380, 385, 390, 396, 399, 402, 405,
+ 406, 408, 412, 415, 418, 419, 421, 424, 427, 430,
+ 433, 436, 439, 441, 443, 446, 449, 452, 455, 458,
+ 461, 464, 467, 470, 473, 476, 479, 482, 485, 488,
+ 491, 494, 497, 500, 506, 510, 513, 517, 521, 524,
+ 530, 534, 536
+};
+
+/* YYRHS -- A `-1'-separated list of the rules' RHS. */
+static const yytype_int8 yyrhs[] =
+{
+ 68, 0, -1, 74, 73, 75, 77, 80, -1, 69,
+ 72, -1, 70, 72, -1, 71, 72, -1, 26, 54,
+ 72, 92, 72, 55, -1, 27, 106, -1, 28, 54,
+ 72, 111, 55, -1, -1, 72, 4, -1, -1, 73,
+ 5, -1, 73, 4, -1, -1, 24, 72, 11, 72,
+ 56, -1, 24, 1, 119, -1, 24, 1, 56, -1,
+ -1, 75, 76, 73, -1, 20, 72, 82, 72, 83,
+ 56, -1, 20, 1, 119, -1, 20, 1, 56, -1,
+ -1, 77, 78, 73, -1, 25, 72, 79, 82, 72,
+ 56, -1, 25, 1, 119, -1, 25, 1, 56, -1,
+ -1, 12, 4, -1, -1, 80, 81, 73, -1, 92,
+ -1, 85, -1, 88, -1, 89, -1, 118, -1, 117,
+ -1, 76, 1, -1, 11, -1, 50, -1, -1, 84,
+ -1, 87, -1, 84, 57, 72, 87, -1, 84, 1,
+ -1, 22, 72, 84, 54, 72, 86, 55, -1, -1,
+ 86, 92, 72, -1, 12, 72, -1, 21, 1, 119,
+ -1, 21, 1, 56, -1, 23, 1, 119, -1, 23,
+ 1, 56, -1, 58, 72, -1, 59, 72, -1, 60,
+ 72, -1, -1, 61, -1, 58, -1, 93, 106, -1,
+ 94, -1, 93, 57, 72, 94, -1, 93, 1, -1,
+ 96, -1, 94, 90, 96, -1, 94, 1, -1, 19,
+ -1, 18, 19, -1, 12, 19, -1, 97, 72, -1,
+ 97, 98, 72, -1, 98, 72, -1, 95, 97, 72,
+ -1, 95, 97, 98, 72, -1, 95, 98, 72, -1,
+ 12, -1, 18, -1, 99, -1, 98, 99, -1, 98,
+ 1, -1, 14, -1, 100, -1, 102, -1, 105, -1,
+ 16, 12, -1, 12, 72, -1, 17, 72, 101, 62,
+ -1, 17, 72, 101, 103, 72, 104, 72, 62, -1,
+ 17, 72, 95, 101, 62, -1, 17, 72, 95, 101,
+ 103, 72, 104, 72, 62, -1, 63, -1, 6, -1,
+ 7, -1, 8, -1, 9, -1, 10, -1, 12, -1,
+ 11, -1, 15, 12, -1, 15, 15, 12, -1, 15,
+ 51, 13, 64, -1, 15, 51, 49, 64, -1, 15,
+ 51, 12, 64, -1, 15, 51, 11, 64, -1, 15,
+ 52, 72, 96, 64, -1, 54, 72, 108, 55, -1,
+ 54, 72, 1, 55, -1, 54, 72, 107, 55, -1,
+ 54, 72, 107, 108, 55, -1, 54, 72, 107, 1,
+ 55, -1, 108, 56, 72, -1, 1, 56, 72, -1,
+ 107, 108, 56, 72, -1, 107, 1, 56, 72, -1,
+ 109, 15, 72, 111, 110, -1, 1, 119, -1, 12,
+ 72, -1, 29, 72, -1, -1, 113, -1, 111, 112,
+ 113, -1, 65, 72, -1, 57, 72, -1, -1, 114,
+ -1, 91, 114, -1, 46, 72, -1, 11, 72, -1,
+ 12, 72, -1, 50, 72, -1, 53, 72, -1, 116,
+ -1, 115, -1, 49, 72, -1, 48, 72, -1, 47,
+ 72, -1, 33, 72, -1, 34, 72, -1, 35, 72,
+ -1, 36, 72, -1, 37, 72, -1, 38, 72, -1,
+ 39, 72, -1, 40, 72, -1, 41, 72, -1, 42,
+ 72, -1, 43, 72, -1, 44, 72, -1, 45, 72,
+ -1, 31, 72, -1, 30, 72, -1, 32, 72, -1,
+ 51, 72, 111, 64, 72, -1, 51, 72, 1, -1,
+ 14, 72, -1, 66, 1, 119, -1, 66, 1, 56,
+ -1, 1, 119, -1, 54, 1, 120, 1, 55, -1,
+ 54, 1, 55, -1, 119, -1, 120, 1, 119, -1
+};
+
+/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
+static const yytype_uint16 yyrline[] =
+{
+ 0, 257, 257, 258, 259, 260, 264, 271, 277, 302,
+ 303, 306, 308, 309, 312, 314, 319, 320, 323, 325,
+ 336, 346, 349, 355, 356, 360, 368, 369, 373, 374,
+ 377, 379, 390, 391, 392, 393, 394, 395, 396, 400,
+ 401, 405, 408, 413, 417, 422, 429, 443, 444, 454,
+ 476, 479, 485, 488, 494, 495, 496, 497, 501, 502,
+ 506, 526, 540, 555, 562, 565, 579, 586, 587, 588,
+ 592, 596, 601, 606, 613, 622, 634, 650, 656, 660,
+ 670, 677, 683, 684, 685, 689, 698, 722, 727, 733,
+ 741, 753, 756, 759, 762, 765, 768, 774, 775, 779,
+ 785, 791, 798, 805, 812, 819, 828, 831, 834, 837,
+ 842, 848, 852, 855, 860, 866, 888, 894, 901, 902,
+ 906, 910, 926, 929, 932, 938, 939, 941, 942, 943,
+ 949, 950, 951, 953, 959, 960, 961, 962, 963, 964,
+ 965, 966, 967, 968, 969, 970, 971, 972, 973, 974,
+ 975, 976, 977, 982, 990, 1006, 1013, 1019, 1028, 1054,
+ 1055, 1059, 1060
+};
+#endif
+
+#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
+/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
+ First, the terminals, then, starting at YYNTOKENS, nonterminals. */
+static const char *const yytname[] =
+{
+ "$end", "error", "$undefined", "UNIMPORTANT_TOK", "S", "SGML_CD",
+ "INCLUDES", "DASHMATCH", "BEGINSWITH", "ENDSWITH", "CONTAINS", "STRING",
+ "IDENT", "NTH", "HASH", "':'", "'.'", "'['", "'*'", "'|'", "IMPORT_SYM",
+ "PAGE_SYM", "MEDIA_SYM", "FONT_FACE_SYM", "CHARSET_SYM", "NAMESPACE_SYM",
+ "TDEHTML_RULE_SYM", "TDEHTML_DECLS_SYM", "TDEHTML_VALUE_SYM",
+ "IMPORTANT_SYM", "QEMS", "EMS", "EXS", "PXS", "CMS", "MMS", "INS", "PTS",
+ "PCS", "DEGS", "RADS", "GRADS", "MSECS", "SECS", "HERZ", "KHERZ",
+ "DIMEN", "PERCENTAGE", "FLOAT", "INTEGER", "URI", "FUNCTION",
+ "NOTFUNCTION", "UNICODERANGE", "'{'", "'}'", "';'", "','", "'+'", "'~'",
+ "'>'", "'-'", "']'", "'='", "')'", "'/'", "'@'", "$accept", "stylesheet",
+ "tdehtml_rule", "tdehtml_decls", "tdehtml_value", "maybe_space",
+ "maybe_sgml", "maybe_charset", "import_list", "import", "namespace_list",
+ "namespace", "maybe_ns_prefix", "rule_list", "rule", "string_or_uri",
+ "maybe_media_list", "media_list", "media", "ruleset_list", "medium",
+ "page", "font_face", "combinator", "unary_operator", "ruleset",
+ "selector_list", "selector", "namespace_selector", "simple_selector",
+ "element_name", "specifier_list", "specifier", "class", "attrib_id",
+ "attrib", "match", "ident_or_string", "pseudo", "declaration_block",
+ "declaration_list", "declaration", "property", "prio", "expr",
+ "operator", "term", "unary_term", "function", "hexcolor", "invalid_at",
+ "invalid_rule", "invalid_block", "invalid_block_list", 0
+};
+#endif
+
+# ifdef YYPRINT
+/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
+ token YYLEX-NUM. */
+static const yytype_uint16 yytoknum[] =
+{
+ 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
+ 265, 266, 267, 268, 269, 58, 46, 91, 42, 124,
+ 270, 271, 272, 273, 274, 275, 276, 277, 278, 279,
+ 280, 281, 282, 283, 284, 285, 286, 287, 288, 289,
+ 290, 291, 292, 293, 294, 295, 296, 297, 298, 299,
+ 300, 301, 302, 303, 123, 125, 59, 44, 43, 126,
+ 62, 45, 93, 61, 41, 47, 64
+};
+# endif
+
+/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
+static const yytype_uint8 yyr1[] =
+{
+ 0, 67, 68, 68, 68, 68, 69, 70, 71, 72,
+ 72, 73, 73, 73, 74, 74, 74, 74, 75, 75,
+ 76, 76, 76, 77, 77, 78, 78, 78, 79, 79,
+ 80, 80, 81, 81, 81, 81, 81, 81, 81, 82,
+ 82, 83, 83, 84, 84, 84, 85, 86, 86, 87,
+ 88, 88, 89, 89, 90, 90, 90, 90, 91, 91,
+ 92, 93, 93, 93, 94, 94, 94, 95, 95, 95,
+ 96, 96, 96, 96, 96, 96, 97, 97, 98, 98,
+ 98, 99, 99, 99, 99, 100, 101, 102, 102, 102,
+ 102, 103, 103, 103, 103, 103, 103, 104, 104, 105,
+ 105, 105, 105, 105, 105, 105, 106, 106, 106, 106,
+ 106, 107, 107, 107, 107, 108, 108, 109, 110, 110,
+ 111, 111, 112, 112, 112, 113, 113, 113, 113, 113,
+ 113, 113, 113, 113, 114, 114, 114, 114, 114, 114,
+ 114, 114, 114, 114, 114, 114, 114, 114, 114, 114,
+ 114, 114, 114, 115, 115, 116, 117, 117, 118, 119,
+ 119, 120, 120
+};
+
+/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
+static const yytype_uint8 yyr2[] =
+{
+ 0, 2, 5, 2, 2, 2, 6, 2, 5, 0,
+ 2, 0, 2, 2, 0, 5, 3, 3, 0, 3,
+ 6, 3, 3, 0, 3, 6, 3, 3, 0, 2,
+ 0, 3, 1, 1, 1, 1, 1, 1, 2, 1,
+ 1, 0, 1, 1, 4, 2, 7, 0, 3, 2,
+ 3, 3, 3, 3, 2, 2, 2, 0, 1, 1,
+ 2, 1, 4, 2, 1, 3, 2, 1, 2, 2,
+ 2, 3, 2, 3, 4, 3, 1, 1, 1, 2,
+ 2, 1, 1, 1, 1, 2, 2, 4, 8, 5,
+ 9, 1, 1, 1, 1, 1, 1, 1, 1, 2,
+ 3, 4, 4, 4, 4, 5, 4, 4, 4, 5,
+ 5, 3, 3, 4, 4, 5, 2, 2, 2, 0,
+ 1, 3, 2, 2, 0, 1, 2, 2, 2, 2,
+ 2, 2, 1, 1, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 5, 3, 2, 3, 3, 2, 5,
+ 3, 1, 3
+};
+
+/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
+ Performed when YYTABLE doesn't specify something else to do. Zero
+ means the default is an error. */
+static const yytype_uint8 yydefact[] =
+{
+ 14, 0, 0, 0, 0, 0, 9, 9, 9, 11,
+ 0, 0, 9, 9, 7, 9, 1, 3, 4, 5,
+ 18, 0, 17, 16, 10, 9, 0, 0, 0, 13,
+ 12, 23, 0, 0, 76, 81, 0, 0, 9, 77,
+ 67, 9, 0, 0, 0, 64, 9, 0, 78, 82,
+ 83, 84, 0, 9, 0, 0, 0, 9, 9, 9,
+ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
+ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
+ 9, 9, 9, 59, 58, 0, 124, 120, 125, 133,
+ 132, 0, 11, 30, 160, 161, 0, 15, 69, 99,
+ 0, 0, 9, 85, 0, 68, 0, 63, 9, 60,
+ 66, 9, 9, 9, 0, 76, 77, 9, 0, 70,
+ 0, 80, 72, 79, 107, 9, 116, 117, 0, 108,
+ 0, 106, 9, 9, 128, 129, 155, 151, 150, 152,
+ 137, 138, 139, 140, 141, 142, 143, 144, 145, 146,
+ 147, 148, 149, 127, 136, 135, 134, 130, 0, 131,
+ 126, 8, 9, 9, 0, 0, 0, 19, 0, 11,
+ 0, 0, 100, 0, 0, 0, 0, 0, 9, 0,
+ 0, 0, 6, 0, 54, 55, 56, 65, 73, 0,
+ 75, 71, 112, 110, 9, 109, 9, 111, 0, 154,
+ 124, 123, 122, 121, 22, 21, 39, 40, 9, 0,
+ 28, 24, 0, 0, 9, 0, 0, 0, 11, 33,
+ 34, 35, 32, 37, 36, 159, 162, 104, 103, 101,
+ 102, 0, 86, 9, 0, 92, 93, 94, 95, 96,
+ 87, 91, 9, 0, 74, 114, 113, 124, 9, 41,
+ 27, 26, 0, 0, 158, 0, 0, 0, 0, 38,
+ 31, 105, 89, 9, 0, 9, 115, 153, 9, 0,
+ 0, 43, 29, 9, 51, 50, 0, 53, 52, 157,
+ 156, 0, 98, 97, 9, 118, 49, 20, 45, 9,
+ 0, 9, 9, 0, 0, 25, 47, 0, 88, 44,
+ 0, 90, 46, 9, 48
+};
+
+/* YYDEFGOTO[NTERM-NUM]. */
+static const yytype_int16 yydefgoto[] =
+{
+ -1, 5, 6, 7, 8, 232, 20, 9, 31, 92,
+ 93, 169, 253, 170, 218, 208, 269, 270, 219, 300,
+ 271, 220, 221, 114, 85, 41, 42, 43, 44, 45,
+ 46, 47, 48, 49, 181, 50, 242, 284, 51, 14,
+ 54, 55, 56, 266, 86, 164, 87, 88, 89, 90,
+ 223, 224, 126, 96
+};
+
+/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
+ STATE-NUM. */
+#define YYPACT_NINF -167
+static const yytype_int16 yypact[] =
+{
+ 252, 19, -46, -32, -20, 44, -167, -167, -167, -167,
+ 147, 183, -167, -167, -167, -167, -167, 96, 96, 96,
+ 34, 114, -167, -167, -167, -167, 333, 156, 355, -167,
+ -167, 85, 98, -2, 99, -167, 158, 109, -167, 152,
+ -167, -167, 52, 241, 222, -167, 229, 162, -167, -167,
+ -167, -167, 215, -167, 101, 168, 118, -167, -167, -167,
+ -167, -167, -167, -167, -167, -167, -167, -167, -167, -167,
+ -167, -167, -167, -167, -167, -167, -167, -167, -167, -167,
+ -167, -167, -167, -167, -167, 430, 127, -167, -167, -167,
+ -167, 119, -167, 160, -167, -167, 189, -167, -167, -167,
+ 202, 116, -167, -167, 14, -167, 104, -167, -167, -167,
+ -167, -167, -167, -167, 346, -167, -167, 229, 162, 96,
+ 162, -167, 96, -167, -167, -167, -167, 96, 238, -167,
+ 210, -167, -167, -167, 96, 96, 96, 96, 96, 96,
+ 96, 96, 96, 96, 96, 96, 96, 96, 96, 96,
+ 96, 96, 96, 96, 96, 96, 96, 96, 273, 96,
+ -167, -167, -167, -167, 398, 150, 5, 34, 185, -167,
+ 125, 157, -167, 154, 169, 217, 218, 333, 99, 152,
+ 237, 41, -167, 333, 96, 96, 96, -167, 96, 162,
+ 96, 96, 96, -167, -167, -167, -167, 96, 355, -167,
+ -36, 96, 96, -167, -167, -167, -167, -167, -167, 161,
+ 110, 34, 232, 288, -167, 295, 296, 326, -167, -167,
+ -167, -167, -167, -167, -167, -167, -167, -167, -167, -167,
+ -167, 264, 96, -167, 87, -167, -167, -167, -167, -167,
+ -167, -167, -167, 324, 96, 96, 96, 143, -167, 171,
+ -167, -167, 325, 88, -167, 198, 171, 207, 219, -167,
+ 34, -167, -167, -167, 31, -167, -167, 96, -167, 274,
+ 35, -167, -167, -167, -167, -167, 97, -167, -167, -167,
+ -167, 31, -167, -167, -167, 96, 96, -167, -167, -167,
+ 79, -167, -167, 23, 171, -167, 96, 27, -167, -167,
+ 213, -167, -167, -167, 96
+};
+
+/* YYPGOTO[NTERM-NUM]. */
+static const yytype_int16 yypgoto[] =
+{
+ -167, -167, -167, -167, -167, -1, -82, -167, -167, 163,
+ -167, -167, -167, -167, -167, 82, -167, 76, -167, -167,
+ 50, -167, -167, -167, -167, -166, -167, 170, 242, -95,
+ 310, -29, -34, -167, 175, -167, 122, 89, -167, 315,
+ -167, 314, -167, -167, -157, -167, 208, 286, -167, -167,
+ -167, -167, -7, -167
+};
+
+/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
+ positive, shift that token. If negative, reduce the rule which
+ number is the opposite. If YYTABLE_NINF, syntax error. */
+#define YYTABLE_NINF -120
+static const yytype_int16 yytable[] =
+{
+ 11, 200, 24, 23, 222, 17, 18, 19, 12, 24,
+ 167, 26, 27, 123, 28, 118, 206, 120, 24, 187,
+ 10, 162, 13, -9, 33, 95, 178, 24, 248, 163,
+ -9, 24, 179, 40, 15, 24, 288, 104, 29, 30,
+ 106, 247, 282, 283, 16, 119, 122, 235, 236, 237,
+ 238, 239, 127, 107, 97, 207, 134, 135, 136, 137,
+ 138, 139, 140, 141, 142, 143, 144, 145, 146, 147,
+ 148, 149, 150, 151, 152, 153, 154, 155, 156, 157,
+ 158, 159, 231, 24, 123, 298, 123, 211, 189, 301,
+ 166, -42, 289, 235, 236, 237, 238, 239, 288, 206,
+ 24, 177, 128, 240, 241, 91, 13, 183, 24, 108,
+ 184, 185, 186, 53, 24, 32, 188, 190, 98, 191,
+ 165, 103, 252, -9, 192, -2, 212, 173, 174, 175,
+ -9, 197, 198, 133, 303, 295, 260, 34, 207, 35,
+ 36, 37, 38, 39, 40, 91, 213, 214, 215, 262,
+ 241, 291, 21, 94, 289, 123, 129, 52, 205, 182,
+ 24, 201, 202, 121, 226, 176, -9, 210, 53, -9,
+ 99, 105, 265, 100, -9, 24, 35, 36, 37, 38,
+ -9, -9, 161, 268, 162, 168, 209, 24, 244, -9,
+ 171, 216, 163, 245, 25, 246, -9, -9, -119, -119,
+ 162, 21, 251, 22, 21, 254, 204, 249, 163, 101,
+ 102, 21, 225, 256, 172, 21, -9, 250, 227, -9,
+ -9, -9, -9, 131, 132, 34, -9, 35, 36, 37,
+ 38, 39, 40, 228, 115, -9, 35, 36, 37, 38,
+ 116, 264, 110, 35, 36, 37, 38, 267, 275, 233,
+ 278, 280, 21, -57, 274, -57, -57, -57, -57, -57,
+ -57, 21, 281, 277, 285, 195, 196, 286, 302, 21,
+ 124, 125, 290, 21, 199, 279, 1, 24, 2, 3,
+ 4, 229, 230, 293, 57, 58, 21, 59, 294, 255,
+ 296, 297, 21, 193, 194, -61, 257, 258, -61, 111,
+ 112, 113, 304, 60, 61, 62, 63, 64, 65, 66,
+ 67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
+ 77, 78, 79, 80, 81, 110, 82, 259, 261, 272,
+ 287, 83, 276, 217, 84, 273, -57, 24, -57, -57,
+ -57, -57, -57, -57, 299, 34, 180, 35, 36, 37,
+ 38, 39, 40, 243, 117, 234, 263, 109, 34, 24,
+ 35, 36, 37, 38, 39, 40, 57, 58, 130, 59,
+ 292, 160, 203, 0, 0, 0, 0, 0, -62, 0,
+ 0, -62, 111, 112, 113, 60, 61, 62, 63, 64,
+ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
+ 75, 76, 77, 78, 79, 80, 81, 0, 82, 57,
+ 58, 0, 59, 83, 0, 0, 84, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 60, 61,
+ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
+ 72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
+ 0, 82, 0, 0, 0, 0, 83, 0, 0, 84,
+ 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
+ 70, 71, 72, 73, 74, 75, 0, 77, 78, 79
+};
+
+#define yypact_value_is_default(yystate) \
+ ((yystate) == (-167))
+
+#define yytable_value_is_error(yytable_value) \
+ YYID (0)
+
+static const yytype_int16 yycheck[] =
+{
+ 1, 158, 4, 10, 170, 6, 7, 8, 54, 4,
+ 92, 12, 13, 47, 15, 44, 11, 46, 4, 114,
+ 1, 57, 54, 4, 25, 32, 12, 4, 64, 65,
+ 11, 4, 18, 19, 54, 4, 1, 38, 4, 5,
+ 41, 198, 11, 12, 0, 46, 47, 6, 7, 8,
+ 9, 10, 53, 1, 56, 50, 57, 58, 59, 60,
+ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
+ 71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
+ 81, 82, 177, 4, 118, 62, 120, 169, 117, 62,
+ 91, 56, 57, 6, 7, 8, 9, 10, 1, 11,
+ 4, 102, 1, 62, 63, 20, 54, 108, 4, 57,
+ 111, 112, 113, 12, 4, 1, 117, 118, 19, 120,
+ 1, 12, 12, 4, 125, 0, 1, 11, 12, 13,
+ 11, 132, 133, 15, 300, 56, 218, 12, 50, 14,
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 62,
+ 63, 54, 54, 55, 57, 189, 55, 1, 165, 55,
+ 4, 162, 163, 1, 171, 49, 4, 168, 12, 50,
+ 12, 19, 29, 15, 12, 4, 14, 15, 16, 17,
+ 18, 19, 55, 12, 57, 25, 1, 4, 189, 4,
+ 1, 66, 65, 194, 11, 196, 11, 12, 55, 56,
+ 57, 54, 209, 56, 54, 212, 56, 208, 65, 51,
+ 52, 54, 55, 214, 12, 54, 54, 56, 64, 57,
+ 58, 59, 60, 55, 56, 12, 64, 14, 15, 16,
+ 17, 18, 19, 64, 12, 50, 14, 15, 16, 17,
+ 18, 242, 1, 14, 15, 16, 17, 248, 255, 12,
+ 257, 258, 54, 12, 56, 14, 15, 16, 17, 18,
+ 19, 54, 263, 56, 265, 55, 56, 268, 55, 54,
+ 55, 56, 273, 54, 1, 56, 24, 4, 26, 27,
+ 28, 64, 64, 284, 11, 12, 54, 14, 289, 1,
+ 291, 292, 54, 55, 56, 54, 1, 1, 57, 58,
+ 59, 60, 303, 30, 31, 32, 33, 34, 35, 36,
+ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
+ 47, 48, 49, 50, 51, 1, 53, 1, 64, 4,
+ 56, 58, 256, 170, 61, 253, 12, 4, 14, 15,
+ 16, 17, 18, 19, 294, 12, 104, 14, 15, 16,
+ 17, 18, 19, 183, 44, 180, 234, 42, 12, 4,
+ 14, 15, 16, 17, 18, 19, 11, 12, 54, 14,
+ 281, 85, 164, -1, -1, -1, -1, -1, 54, -1,
+ -1, 57, 58, 59, 60, 30, 31, 32, 33, 34,
+ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
+ 45, 46, 47, 48, 49, 50, 51, -1, 53, 11,
+ 12, -1, 14, 58, -1, -1, 61, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 30, 31,
+ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
+ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
+ -1, 53, -1, -1, -1, -1, 58, -1, -1, 61,
+ 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
+ 40, 41, 42, 43, 44, 45, -1, 47, 48, 49
+};
+
+/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
+ symbol of state STATE-NUM. */
+static const yytype_uint8 yystos[] =
+{
+ 0, 24, 26, 27, 28, 68, 69, 70, 71, 74,
+ 1, 72, 54, 54, 106, 54, 0, 72, 72, 72,
+ 73, 54, 56, 119, 4, 11, 72, 72, 72, 4,
+ 5, 75, 1, 72, 12, 14, 15, 16, 17, 18,
+ 19, 92, 93, 94, 95, 96, 97, 98, 99, 100,
+ 102, 105, 1, 12, 107, 108, 109, 11, 12, 14,
+ 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
+ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
+ 50, 51, 53, 58, 61, 91, 111, 113, 114, 115,
+ 116, 20, 76, 77, 55, 119, 120, 56, 19, 12,
+ 15, 51, 52, 12, 72, 19, 72, 1, 57, 106,
+ 1, 58, 59, 60, 90, 12, 18, 97, 98, 72,
+ 98, 1, 72, 99, 55, 56, 119, 72, 1, 55,
+ 108, 55, 56, 15, 72, 72, 72, 72, 72, 72,
+ 72, 72, 72, 72, 72, 72, 72, 72, 72, 72,
+ 72, 72, 72, 72, 72, 72, 72, 72, 72, 72,
+ 114, 55, 57, 65, 112, 1, 72, 73, 25, 78,
+ 80, 1, 12, 11, 12, 13, 49, 72, 12, 18,
+ 95, 101, 55, 72, 72, 72, 72, 96, 72, 98,
+ 72, 72, 72, 55, 56, 55, 56, 72, 72, 1,
+ 111, 72, 72, 113, 56, 119, 11, 50, 82, 1,
+ 72, 73, 1, 21, 22, 23, 66, 76, 81, 85,
+ 88, 89, 92, 117, 118, 55, 119, 64, 64, 64,
+ 64, 96, 72, 12, 101, 6, 7, 8, 9, 10,
+ 62, 63, 103, 94, 72, 72, 72, 111, 64, 72,
+ 56, 119, 12, 79, 119, 1, 72, 1, 1, 1,
+ 73, 64, 62, 103, 72, 29, 110, 72, 12, 83,
+ 84, 87, 4, 82, 56, 119, 84, 56, 119, 56,
+ 119, 72, 11, 12, 104, 72, 72, 56, 1, 57,
+ 72, 54, 104, 72, 72, 56, 72, 72, 62, 87,
+ 86, 62, 55, 92, 72
+};
+
+#define yyerrok (yyerrstatus = 0)
+#define yyclearin (yychar = YYEMPTY)
+#define YYEMPTY (-2)
+#define YYEOF 0
+
+#define YYACCEPT goto yyacceptlab
+#define YYABORT goto yyabortlab
+#define YYERROR goto yyerrorlab
+
+
+/* Like YYERROR except do call yyerror. This remains here temporarily
+ to ease the transition to the new meaning of YYERROR, for GCC.
+ Once GCC version 2 has supplanted version 1, this can go. However,
+ YYFAIL appears to be in use. Nevertheless, it is formally deprecated
+ in Bison 2.4.2's NEWS entry, where a plan to phase it out is
+ discussed. */
+
+#define YYFAIL goto yyerrlab
+#if defined YYFAIL
+ /* This is here to suppress warnings from the GCC cpp's
+ -Wunused-macros. Normally we don't worry about that warning, but
+ some users do, and we want to make it easy for users to remove
+ YYFAIL uses, which will produce warnings from Bison 2.5. */
+#endif
+
+#define YYRECOVERING() (!!yyerrstatus)
+
+#define YYBACKUP(Token, Value) \
+do \
+ if (yychar == YYEMPTY && yylen == 1) \
+ { \
+ yychar = (Token); \
+ yylval = (Value); \
+ YYPOPSTACK (1); \
+ goto yybackup; \
+ } \
+ else \
+ { \
+ yyerror (YY_("syntax error: cannot back up")); \
+ YYERROR; \
+ } \
+while (YYID (0))
+
+
+#define YYTERROR 1
+#define YYERRCODE 256
+
+
+/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
+ If N is 0, then set CURRENT to the empty location which ends
+ the previous symbol: RHS[0] (always defined). */
+
+#define YYRHSLOC(Rhs, K) ((Rhs)[K])
+#ifndef YYLLOC_DEFAULT
+# define YYLLOC_DEFAULT(Current, Rhs, N) \
+ do \
+ if (YYID (N)) \
+ { \
+ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
+ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
+ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
+ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
+ } \
+ else \
+ { \
+ (Current).first_line = (Current).last_line = \
+ YYRHSLOC (Rhs, 0).last_line; \
+ (Current).first_column = (Current).last_column = \
+ YYRHSLOC (Rhs, 0).last_column; \
+ } \
+ while (YYID (0))
+#endif
+
+
+/* This macro is provided for backward compatibility. */
+
+#ifndef YY_LOCATION_PRINT
+# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
+#endif
+
+
+/* YYLEX -- calling `yylex' with the right arguments. */
+
+#ifdef YYLEX_PARAM
+# define YYLEX yylex (&yylval, YYLEX_PARAM)
+#else
+# define YYLEX yylex (&yylval)
+#endif
+
+/* Enable debugging if requested. */
+#if YYDEBUG
+
+# ifndef YYFPRINTF
+# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
+# define YYFPRINTF fprintf
+# endif
+
+# define YYDPRINTF(Args) \
+do { \
+ if (yydebug) \
+ YYFPRINTF Args; \
+} while (YYID (0))
+
+# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
+do { \
+ if (yydebug) \
+ { \
+ YYFPRINTF (stderr, "%s ", Title); \
+ yy_symbol_print (stderr, \
+ Type, Value); \
+ YYFPRINTF (stderr, "\n"); \
+ } \
+} while (YYID (0))
+
+
+/*--------------------------------.
+| Print this symbol on YYOUTPUT. |
+`--------------------------------*/
+
+/*ARGSUSED*/
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
+#else
+static void
+yy_symbol_value_print (yyoutput, yytype, yyvaluep)
+ FILE *yyoutput;
+ int yytype;
+ YYSTYPE const * const yyvaluep;
+#endif
+{
+ if (!yyvaluep)
+ return;
+# ifdef YYPRINT
+ if (yytype < YYNTOKENS)
+ YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
+# else
+ YYUSE (yyoutput);
+# endif
+ switch (yytype)
+ {
+ default:
+ break;
+ }
+}
+
+
+/*--------------------------------.
+| Print this symbol on YYOUTPUT. |
+`--------------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
+#else
+static void
+yy_symbol_print (yyoutput, yytype, yyvaluep)
+ FILE *yyoutput;
+ int yytype;
+ YYSTYPE const * const yyvaluep;
+#endif
+{
+ if (yytype < YYNTOKENS)
+ YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
+ else
+ YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
+
+ yy_symbol_value_print (yyoutput, yytype, yyvaluep);
+ YYFPRINTF (yyoutput, ")");
+}
+
+/*------------------------------------------------------------------.
+| yy_stack_print -- Print the state stack from its BOTTOM up to its |
+| TOP (included). |
+`------------------------------------------------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
+#else
+static void
+yy_stack_print (yybottom, yytop)
+ yytype_int16 *yybottom;
+ yytype_int16 *yytop;
+#endif
+{
+ YYFPRINTF (stderr, "Stack now");
+ for (; yybottom <= yytop; yybottom++)
+ {
+ int yybot = *yybottom;
+ YYFPRINTF (stderr, " %d", yybot);
+ }
+ YYFPRINTF (stderr, "\n");
+}
+
+# define YY_STACK_PRINT(Bottom, Top) \
+do { \
+ if (yydebug) \
+ yy_stack_print ((Bottom), (Top)); \
+} while (YYID (0))
+
+
+/*------------------------------------------------.
+| Report that the YYRULE is going to be reduced. |
+`------------------------------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
+#else
+static void
+yy_reduce_print (yyvsp, yyrule)
+ YYSTYPE *yyvsp;
+ int yyrule;
+#endif
+{
+ int yynrhs = yyr2[yyrule];
+ int yyi;
+ unsigned long int yylno = yyrline[yyrule];
+ YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
+ yyrule - 1, yylno);
+ /* The symbols being reduced. */
+ for (yyi = 0; yyi < yynrhs; yyi++)
+ {
+ YYFPRINTF (stderr, " $%d = ", yyi + 1);
+ yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
+ &(yyvsp[(yyi + 1) - (yynrhs)])
+ );
+ YYFPRINTF (stderr, "\n");
+ }
+}
+
+# define YY_REDUCE_PRINT(Rule) \
+do { \
+ if (yydebug) \
+ yy_reduce_print (yyvsp, Rule); \
+} while (YYID (0))
+
+/* Nonzero means print parse trace. It is left uninitialized so that
+ multiple parsers can coexist. */
+int yydebug;
+#else /* !YYDEBUG */
+# define YYDPRINTF(Args)
+# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
+# define YY_STACK_PRINT(Bottom, Top)
+# define YY_REDUCE_PRINT(Rule)
+#endif /* !YYDEBUG */
+
+
+/* YYINITDEPTH -- initial size of the parser's stacks. */
+#ifndef YYINITDEPTH
+# define YYINITDEPTH 200
+#endif
+
+/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
+ if the built-in stack extension method is used).
+
+ Do not make this value too large; the results are undefined if
+ YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
+ evaluated with infinite-precision integer arithmetic. */
+
+#ifndef YYMAXDEPTH
+# define YYMAXDEPTH 10000
+#endif
+
+
+#if YYERROR_VERBOSE
+
+# ifndef yystrlen
+# if defined __GLIBC__ && defined _STRING_H
+# define yystrlen strlen
+# else
+/* Return the length of YYSTR. */
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static YYSIZE_T
+yystrlen (const char *yystr)
+#else
+static YYSIZE_T
+yystrlen (yystr)
+ const char *yystr;
+#endif
+{
+ YYSIZE_T yylen;
+ for (yylen = 0; yystr[yylen]; yylen++)
+ continue;
+ return yylen;
+}
+# endif
+# endif
+
+# ifndef yystpcpy
+# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
+# define yystpcpy stpcpy
+# else
+/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
+ YYDEST. */
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static char *
+yystpcpy (char *yydest, const char *yysrc)
+#else
+static char *
+yystpcpy (yydest, yysrc)
+ char *yydest;
+ const char *yysrc;
+#endif
+{
+ char *yyd = yydest;
+ const char *yys = yysrc;
+
+ while ((*yyd++ = *yys++) != '\0')
+ continue;
+
+ return yyd - 1;
+}
+# endif
+# endif
+
+# ifndef yytnamerr
+/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
+ quotes and backslashes, so that it's suitable for yyerror. The
+ heuristic is that double-quoting is unnecessary unless the string
+ contains an apostrophe, a comma, or backslash (other than
+ backslash-backslash). YYSTR is taken from yytname. If YYRES is
+ null, do not copy; instead, return the length of what the result
+ would have been. */
+static YYSIZE_T
+yytnamerr (char *yyres, const char *yystr)
+{
+ if (*yystr == '"')
+ {
+ YYSIZE_T yyn = 0;
+ char const *yyp = yystr;
+
+ for (;;)
+ switch (*++yyp)
+ {
+ case '\'':
+ case ',':
+ goto do_not_strip_quotes;
+
+ case '\\':
+ if (*++yyp != '\\')
+ goto do_not_strip_quotes;
+ /* Fall through. */
+ default:
+ if (yyres)
+ yyres[yyn] = *yyp;
+ yyn++;
+ break;
+
+ case '"':
+ if (yyres)
+ yyres[yyn] = '\0';
+ return yyn;
+ }
+ do_not_strip_quotes: ;
+ }
+
+ if (! yyres)
+ return yystrlen (yystr);
+
+ return yystpcpy (yyres, yystr) - yyres;
+}
+# endif
+
+/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
+ about the unexpected token YYTOKEN for the state stack whose top is
+ YYSSP.
+
+ Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
+ not large enough to hold the message. In that case, also set
+ *YYMSG_ALLOC to the required number of bytes. Return 2 if the
+ required number of bytes is too large to store. */
+static int
+yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
+ yytype_int16 *yyssp, int yytoken)
+{
+ YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]);
+ YYSIZE_T yysize = yysize0;
+ YYSIZE_T yysize1;
+ enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
+ /* Internationalized format string. */
+ const char *yyformat = 0;
+ /* Arguments of yyformat. */
+ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
+ /* Number of reported tokens (one for the "unexpected", one per
+ "expected"). */
+ int yycount = 0;
+
+ /* There are many possibilities here to consider:
+ - Assume YYFAIL is not used. It's too flawed to consider. See
+ <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
+ for details. YYERROR is fine as it does not invoke this
+ function.
+ - If this state is a consistent state with a default action, then
+ the only way this function was invoked is if the default action
+ is an error action. In that case, don't check for expected
+ tokens because there are none.
+ - The only way there can be no lookahead present (in yychar) is if
+ this state is a consistent state with a default action. Thus,
+ detecting the absence of a lookahead is sufficient to determine
+ that there is no unexpected or expected token to report. In that
+ case, just report a simple "syntax error".
+ - Don't assume there isn't a lookahead just because this state is a
+ consistent state with a default action. There might have been a
+ previous inconsistent state, consistent state with a non-default
+ action, or user semantic action that manipulated yychar.
+ - Of course, the expected token list depends on states to have
+ correct lookahead information, and it depends on the parser not
+ to perform extra reductions after fetching a lookahead from the
+ scanner and before detecting a syntax error. Thus, state merging
+ (from LALR or IELR) and default reductions corrupt the expected
+ token list. However, the list is correct for canonical LR with
+ one exception: it will still contain any token that will not be
+ accepted due to an error action in a later state.
+ */
+ if (yytoken != YYEMPTY)
+ {
+ int yyn = yypact[*yyssp];
+ yyarg[yycount++] = yytname[yytoken];
+ if (!yypact_value_is_default (yyn))
+ {
+ /* Start YYX at -YYN if negative to avoid negative indexes in
+ YYCHECK. In other words, skip the first -YYN actions for
+ this state because they are default actions. */
+ int yyxbegin = yyn < 0 ? -yyn : 0;
+ /* Stay within bounds of both yycheck and yytname. */
+ int yychecklim = YYLAST - yyn + 1;
+ int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
+ int yyx;
+
+ for (yyx = yyxbegin; yyx < yyxend; ++yyx)
+ if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
+ && !yytable_value_is_error (yytable[yyx + yyn]))
+ {
+ if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
+ {
+ yycount = 1;
+ yysize = yysize0;
+ break;
+ }
+ yyarg[yycount++] = yytname[yyx];
+ yysize1 = yysize + yytnamerr (0, yytname[yyx]);
+ if (! (yysize <= yysize1
+ && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
+ return 2;
+ yysize = yysize1;
+ }
+ }
+ }
+
+ switch (yycount)
+ {
+# define YYCASE_(N, S) \
+ case N: \
+ yyformat = S; \
+ break
+ YYCASE_(0, YY_("syntax error"));
+ YYCASE_(1, YY_("syntax error, unexpected %s"));
+ YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
+ YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
+ YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
+ YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
+# undef YYCASE_
+ }
+
+ yysize1 = yysize + yystrlen (yyformat);
+ if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
+ return 2;
+ yysize = yysize1;
+
+ if (*yymsg_alloc < yysize)
+ {
+ *yymsg_alloc = 2 * yysize;
+ if (! (yysize <= *yymsg_alloc
+ && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
+ *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
+ return 1;
+ }
+
+ /* Avoid sprintf, as that infringes on the user's name space.
+ Don't have undefined behavior even if the translation
+ produced a string with the wrong number of "%s"s. */
+ {
+ char *yyp = *yymsg;
+ int yyi = 0;
+ while ((*yyp = *yyformat) != '\0')
+ if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
+ {
+ yyp += yytnamerr (yyp, yyarg[yyi++]);
+ yyformat += 2;
+ }
+ else
+ {
+ yyp++;
+ yyformat++;
+ }
+ }
+ return 0;
+}
+#endif /* YYERROR_VERBOSE */
+
+/*-----------------------------------------------.
+| Release the memory associated to this symbol. |
+`-----------------------------------------------*/
+
+/*ARGSUSED*/
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
+#else
+static void
+yydestruct (yymsg, yytype, yyvaluep)
+ const char *yymsg;
+ int yytype;
+ YYSTYPE *yyvaluep;
+#endif
+{
+ YYUSE (yyvaluep);
+
+ if (!yymsg)
+ yymsg = "Deleting";
+ YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
+
+ switch (yytype)
+ {
+ case 83: /* "maybe_media_list" */
+
+ { delete (yyvaluep->mediaList); (yyvaluep->mediaList) = 0; };
+
+ break;
+ case 84: /* "media_list" */
+
+ { delete (yyvaluep->mediaList); (yyvaluep->mediaList) = 0; };
+
+ break;
+ case 86: /* "ruleset_list" */
+
+ { delete (yyvaluep->ruleList); (yyvaluep->ruleList) = 0; };
+
+ break;
+ case 93: /* "selector_list" */
+
+ { delete (yyvaluep->selectorList); (yyvaluep->selectorList) = 0; };
+
+ break;
+ case 94: /* "selector" */
+
+ { delete (yyvaluep->selector); (yyvaluep->selector) = 0; };
+
+ break;
+ case 96: /* "simple_selector" */
+
+ { delete (yyvaluep->selector); (yyvaluep->selector) = 0; };
+
+ break;
+ case 98: /* "specifier_list" */
+
+ { delete (yyvaluep->selector); (yyvaluep->selector) = 0; };
+
+ break;
+ case 99: /* "specifier" */
+
+ { delete (yyvaluep->selector); (yyvaluep->selector) = 0; };
+
+ break;
+ case 100: /* "class" */
+
+ { delete (yyvaluep->selector); (yyvaluep->selector) = 0; };
+
+ break;
+ case 102: /* "attrib" */
+
+ { delete (yyvaluep->selector); (yyvaluep->selector) = 0; };
+
+ break;
+ case 105: /* "pseudo" */
+
+ { delete (yyvaluep->selector); (yyvaluep->selector) = 0; };
+
+ break;
+ case 111: /* "expr" */
+
+ { delete (yyvaluep->valueList); (yyvaluep->valueList) = 0; };
+
+ break;
+
+ default:
+ break;
+ }
+}
+
+
+/* Prevent warnings from -Wmissing-prototypes. */
+#ifdef YYPARSE_PARAM
+#if defined __STDC__ || defined __cplusplus
+int yyparse (void *YYPARSE_PARAM);
+#else
+int yyparse ();
+#endif
+#else /* ! YYPARSE_PARAM */
+#if defined __STDC__ || defined __cplusplus
+int yyparse (void);
+#else
+int yyparse ();
+#endif
+#endif /* ! YYPARSE_PARAM */
+
+
+/*----------.
+| yyparse. |
+`----------*/
+
+#ifdef YYPARSE_PARAM
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+int
+yyparse (void *YYPARSE_PARAM)
+#else
+int
+yyparse (YYPARSE_PARAM)
+ void *YYPARSE_PARAM;
+#endif
+#else /* ! YYPARSE_PARAM */
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+int
+yyparse (void)
+#else
+int
+yyparse ()
+
+#endif
+#endif
+{
+/* The lookahead symbol. */
+int yychar;
+
+/* The semantic value of the lookahead symbol. */
+YYSTYPE yylval;
+
+ /* Number of syntax errors so far. */
+ int yynerrs;
+
+ int yystate;
+ /* Number of tokens to shift before error messages enabled. */
+ int yyerrstatus;
+
+ /* The stacks and their tools:
+ `yyss': related to states.
+ `yyvs': related to semantic values.
+
+ Refer to the stacks thru separate pointers, to allow yyoverflow
+ to reallocate them elsewhere. */
+
+ /* The state stack. */
+ yytype_int16 yyssa[YYINITDEPTH];
+ yytype_int16 *yyss;
+ yytype_int16 *yyssp;
+
+ /* The semantic value stack. */
+ YYSTYPE yyvsa[YYINITDEPTH];
+ YYSTYPE *yyvs;
+ YYSTYPE *yyvsp;
+
+ YYSIZE_T yystacksize;
+
+ int yyn;
+ int yyresult;
+ /* Lookahead token as an internal (translated) token number. */
+ int yytoken;
+ /* The variables used to return semantic value and location from the
+ action routines. */
+ YYSTYPE yyval;
+
+#if YYERROR_VERBOSE
+ /* Buffer for error messages, and its allocated size. */
+ char yymsgbuf[128];
+ char *yymsg = yymsgbuf;
+ YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
+#endif
+
+#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
+
+ /* The number of symbols on the RHS of the reduced rule.
+ Keep to zero when no symbol should be popped. */
+ int yylen = 0;
+
+ yytoken = 0;
+ yyss = yyssa;
+ yyvs = yyvsa;
+ yystacksize = YYINITDEPTH;
+
+ YYDPRINTF ((stderr, "Starting parse\n"));
+
+ yystate = 0;
+ yyerrstatus = 0;
+ yynerrs = 0;
+ yychar = YYEMPTY; /* Cause a token to be read. */
+
+ /* Initialize stack pointers.
+ Waste one element of value and location stack
+ so that they stay on the same level as the state stack.
+ The wasted elements are never initialized. */
+ yyssp = yyss;
+ yyvsp = yyvs;
+
+ goto yysetstate;
+
+/*------------------------------------------------------------.
+| yynewstate -- Push a new state, which is found in yystate. |
+`------------------------------------------------------------*/
+ yynewstate:
+ /* In all cases, when you get here, the value and location stacks
+ have just been pushed. So pushing a state here evens the stacks. */
+ yyssp++;
+
+ yysetstate:
+ *yyssp = yystate;
+
+ if (yyss + yystacksize - 1 <= yyssp)
+ {
+ /* Get the current used size of the three stacks, in elements. */
+ YYSIZE_T yysize = yyssp - yyss + 1;
+
+#ifdef yyoverflow
+ {
+ /* Give user a chance to reallocate the stack. Use copies of
+ these so that the &'s don't force the real ones into
+ memory. */
+ YYSTYPE *yyvs1 = yyvs;
+ yytype_int16 *yyss1 = yyss;
+
+ /* Each stack pointer address is followed by the size of the
+ data in use in that stack, in bytes. This used to be a
+ conditional around just the two extra args, but that might
+ be undefined if yyoverflow is a macro. */
+ yyoverflow (YY_("memory exhausted"),
+ &yyss1, yysize * sizeof (*yyssp),
+ &yyvs1, yysize * sizeof (*yyvsp),
+ &yystacksize);
+
+ yyss = yyss1;
+ yyvs = yyvs1;
+ }
+#else /* no yyoverflow */
+# ifndef YYSTACK_RELOCATE
+ goto yyexhaustedlab;
+# else
+ /* Extend the stack our own way. */
+ if (YYMAXDEPTH <= yystacksize)
+ goto yyexhaustedlab;
+ yystacksize *= 2;
+ if (YYMAXDEPTH < yystacksize)
+ yystacksize = YYMAXDEPTH;
+
+ {
+ yytype_int16 *yyss1 = yyss;
+ union yyalloc *yyptr =
+ (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
+ if (! yyptr)
+ goto yyexhaustedlab;
+ YYSTACK_RELOCATE (yyss_alloc, yyss);
+ YYSTACK_RELOCATE (yyvs_alloc, yyvs);
+# undef YYSTACK_RELOCATE
+ if (yyss1 != yyssa)
+ YYSTACK_FREE (yyss1);
+ }
+# endif
+#endif /* no yyoverflow */
+
+ yyssp = yyss + yysize - 1;
+ yyvsp = yyvs + yysize - 1;
+
+ YYDPRINTF ((stderr, "Stack size increased to %lu\n",
+ (unsigned long int) yystacksize));
+
+ if (yyss + yystacksize - 1 <= yyssp)
+ YYABORT;
+ }
+
+ YYDPRINTF ((stderr, "Entering state %d\n", yystate));
+
+ if (yystate == YYFINAL)
+ YYACCEPT;
+
+ goto yybackup;
+
+/*-----------.
+| yybackup. |
+`-----------*/
+yybackup:
+
+ /* Do appropriate processing given the current state. Read a
+ lookahead token if we need one and don't already have one. */
+
+ /* First try to decide what to do without reference to lookahead token. */
+ yyn = yypact[yystate];
+ if (yypact_value_is_default (yyn))
+ goto yydefault;
+
+ /* Not known => get a lookahead token if don't already have one. */
+
+ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
+ if (yychar == YYEMPTY)
+ {
+ YYDPRINTF ((stderr, "Reading a token: "));
+ yychar = YYLEX;
+ }
+
+ if (yychar <= YYEOF)
+ {
+ yychar = yytoken = YYEOF;
+ YYDPRINTF ((stderr, "Now at end of input.\n"));
+ }
+ else
+ {
+ yytoken = YYTRANSLATE (yychar);
+ YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
+ }
+
+ /* If the proper action on seeing token YYTOKEN is to reduce or to
+ detect an error, take that action. */
+ yyn += yytoken;
+ if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
+ goto yydefault;
+ yyn = yytable[yyn];
+ if (yyn <= 0)
+ {
+ if (yytable_value_is_error (yyn))
+ goto yyerrlab;
+ yyn = -yyn;
+ goto yyreduce;
+ }
+
+ /* Count tokens shifted since error; after three, turn off error
+ status. */
+ if (yyerrstatus)
+ yyerrstatus--;
+
+ /* Shift the lookahead token. */
+ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
+
+ /* Discard the shifted token. */
+ yychar = YYEMPTY;
+
+ yystate = yyn;
+ *++yyvsp = yylval;
+
+ goto yynewstate;
+
+
+/*-----------------------------------------------------------.
+| yydefault -- do the default action for the current state. |
+`-----------------------------------------------------------*/
+yydefault:
+ yyn = yydefact[yystate];
+ if (yyn == 0)
+ goto yyerrlab;
+ goto yyreduce;
+
+
+/*-----------------------------.
+| yyreduce -- Do a reduction. |
+`-----------------------------*/
+yyreduce:
+ /* yyn is the number of a rule to reduce with. */
+ yylen = yyr2[yyn];
+
+ /* If YYLEN is nonzero, implement the default value of the action:
+ `$$ = $1'.
+
+ Otherwise, the following line sets YYVAL to garbage.
+ This behavior is undocumented and Bison
+ users should not rely upon it. Assigning to YYVAL
+ unconditionally makes the parser a bit smaller, and it avoids a
+ GCC warning that YYVAL may be used uninitialized. */
+ yyval = yyvsp[1-yylen];
+
+
+ YY_REDUCE_PRINT (yyn);
+ switch (yyn)
+ {
+ case 6:
+
+ {
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ p->rule = (yyvsp[(4) - (6)].rule);
+ }
+ break;
+
+ case 7:
+
+ {
+ /* can be empty */
+ }
+ break;
+
+ case 8:
+
+ {
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if ( (yyvsp[(4) - (5)].valueList) ) {
+ p->valueList = (yyvsp[(4) - (5)].valueList);
+#ifdef CSS_DEBUG
+ kdDebug( 6080 ) << " got property for " << p->id <<
+ (p->important?" important":"")<< endl;
+ bool ok =
+#endif
+ p->parseValue( p->id, p->important );
+#ifdef CSS_DEBUG
+ if ( !ok )
+ kdDebug( 6080 ) << " couldn't parse value!" << endl;
+#endif
+ }
+#ifdef CSS_DEBUG
+ else
+ kdDebug( 6080 ) << " no value found!" << endl;
+#endif
+ delete p->valueList;
+ p->valueList = 0;
+ }
+ break;
+
+ case 15:
+
+ {
+#ifdef CSS_DEBUG
+ kdDebug( 6080 ) << "charset rule: " << qString((yyvsp[(3) - (5)].string)) << endl;
+#endif
+ }
+ break;
+
+ case 19:
+
+ {
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if ( (yyvsp[(2) - (3)].rule) && p->styleElement && p->styleElement->isCSSStyleSheet() ) {
+ p->styleElement->append( (yyvsp[(2) - (3)].rule) );
+ } else {
+ delete (yyvsp[(2) - (3)].rule);
+ }
+ }
+ break;
+
+ case 20:
+
+ {
+#ifdef CSS_DEBUG
+ kdDebug( 6080 ) << "@import: " << qString((yyvsp[(3) - (6)].string)) << endl;
+#endif
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if ( (yyvsp[(5) - (6)].mediaList) && p->styleElement && p->styleElement->isCSSStyleSheet() )
+ (yyval.rule) = new CSSImportRuleImpl( p->styleElement, domString((yyvsp[(3) - (6)].string)), (yyvsp[(5) - (6)].mediaList) );
+ else
+ (yyval.rule) = 0;
+ }
+ break;
+
+ case 21:
+
+ {
+ (yyval.rule) = 0;
+ }
+ break;
+
+ case 22:
+
+ {
+ (yyval.rule) = 0;
+ }
+ break;
+
+ case 25:
+
+ {
+#ifdef CSS_DEBUG
+ kdDebug( 6080 ) << "@namespace: " << qString((yyvsp[(4) - (6)].string)) << endl;
+#endif
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if (p->styleElement && p->styleElement->isCSSStyleSheet())
+ static_cast<CSSStyleSheetImpl*>(p->styleElement)->addNamespace(p, domString((yyvsp[(3) - (6)].string)), domString((yyvsp[(4) - (6)].string)));
+ }
+ break;
+
+ case 28:
+
+ { (yyval.string).string = 0; }
+ break;
+
+ case 29:
+
+ { (yyval.string) = (yyvsp[(1) - (2)].string); }
+ break;
+
+ case 31:
+
+ {
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if ( (yyvsp[(2) - (3)].rule) && p->styleElement && p->styleElement->isCSSStyleSheet() ) {
+ p->styleElement->append( (yyvsp[(2) - (3)].rule) );
+ } else {
+ delete (yyvsp[(2) - (3)].rule);
+ }
+ }
+ break;
+
+ case 38:
+
+ { delete (yyvsp[(1) - (2)].rule); (yyval.rule) = 0; }
+ break;
+
+ case 41:
+
+ {
+ (yyval.mediaList) = new MediaListImpl();
+ }
+ break;
+
+ case 43:
+
+ {
+ (yyval.mediaList) = new MediaListImpl();
+ (yyval.mediaList)->appendMedium( domString((yyvsp[(1) - (1)].string)).lower() );
+ }
+ break;
+
+ case 44:
+
+ {
+ (yyval.mediaList) = (yyvsp[(1) - (4)].mediaList);
+ if ((yyval.mediaList))
+ (yyval.mediaList)->appendMedium( domString((yyvsp[(4) - (4)].string)).lower() );
+ }
+ break;
+
+ case 45:
+
+ {
+ delete (yyvsp[(1) - (2)].mediaList);
+ (yyval.mediaList) = 0;
+ }
+ break;
+
+ case 46:
+
+ {
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if ( (yyvsp[(3) - (7)].mediaList) && (yyvsp[(6) - (7)].ruleList) &&
+ p->styleElement && p->styleElement->isCSSStyleSheet() ) {
+ (yyval.rule) = new CSSMediaRuleImpl( static_cast<CSSStyleSheetImpl*>(p->styleElement), (yyvsp[(3) - (7)].mediaList), (yyvsp[(6) - (7)].ruleList) );
+ } else {
+ (yyval.rule) = 0;
+ delete (yyvsp[(3) - (7)].mediaList);
+ delete (yyvsp[(6) - (7)].ruleList);
+ }
+ }
+ break;
+
+ case 47:
+
+ { (yyval.ruleList) = 0; }
+ break;
+
+ case 48:
+
+ {
+ (yyval.ruleList) = (yyvsp[(1) - (3)].ruleList);
+ if ( (yyvsp[(2) - (3)].rule) ) {
+ if ( !(yyval.ruleList) ) (yyval.ruleList) = new CSSRuleListImpl();
+ (yyval.ruleList)->append( (yyvsp[(2) - (3)].rule) );
+ }
+ }
+ break;
+
+ case 49:
+
+ {
+ (yyval.string) = (yyvsp[(1) - (2)].string);
+ }
+ break;
+
+ case 50:
+
+ {
+ (yyval.rule) = 0;
+ }
+ break;
+
+ case 51:
+
+ {
+ (yyval.rule) = 0;
+ }
+ break;
+
+ case 52:
+
+ {
+ (yyval.rule) = 0;
+ }
+ break;
+
+ case 53:
+
+ {
+ (yyval.rule) = 0;
+ }
+ break;
+
+ case 54:
+
+ { (yyval.relation) = CSSSelector::DirectAdjacent; }
+ break;
+
+ case 55:
+
+ { (yyval.relation) = CSSSelector::IndirectAdjacent; }
+ break;
+
+ case 56:
+
+ { (yyval.relation) = CSSSelector::Child; }
+ break;
+
+ case 57:
+
+ { (yyval.relation) = CSSSelector::Descendant; }
+ break;
+
+ case 58:
+
+ { (yyval.val) = -1; }
+ break;
+
+ case 59:
+
+ { (yyval.val) = 1; }
+ break;
+
+ case 60:
+
+ {
+#ifdef CSS_DEBUG
+ kdDebug( 6080 ) << "got ruleset" << endl << " selector:" << endl;
+#endif
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if ( (yyvsp[(1) - (2)].selectorList) && (yyvsp[(2) - (2)].ok) && p->numParsedProperties ) {
+ CSSStyleRuleImpl *rule = new CSSStyleRuleImpl( p->styleElement );
+ CSSStyleDeclarationImpl *decl = p->createStyleDeclaration( rule );
+ rule->setSelector( (yyvsp[(1) - (2)].selectorList) );
+ rule->setDeclaration(decl);
+ (yyval.rule) = rule;
+ } else {
+ (yyval.rule) = 0;
+ delete (yyvsp[(1) - (2)].selectorList);
+ p->clearProperties();
+ }
+ }
+ break;
+
+ case 61:
+
+ {
+ if ( (yyvsp[(1) - (1)].selector) ) {
+ (yyval.selectorList) = new TQPtrList<CSSSelector>;
+ (yyval.selectorList)->setAutoDelete( true );
+#ifdef CSS_DEBUG
+ kdDebug( 6080 ) << " got simple selector:" << endl;
+ (yyvsp[(1) - (1)].selector)->print();
+#endif
+ (yyval.selectorList)->append( (yyvsp[(1) - (1)].selector) );
+ tdehtml::CSSStyleSelector::precomputeAttributeDependencies(static_cast<CSSParser *>(parser)->document(), (yyvsp[(1) - (1)].selector));
+ } else {
+ (yyval.selectorList) = 0;
+ }
+ }
+ break;
+
+ case 62:
+
+ {
+ if ( (yyvsp[(1) - (4)].selectorList) && (yyvsp[(4) - (4)].selector) ) {
+ (yyval.selectorList) = (yyvsp[(1) - (4)].selectorList);
+ (yyval.selectorList)->append( (yyvsp[(4) - (4)].selector) );
+ tdehtml::CSSStyleSelector::precomputeAttributeDependencies(static_cast<CSSParser *>(parser)->document(), (yyvsp[(4) - (4)].selector));
+#ifdef CSS_DEBUG
+ kdDebug( 6080 ) << " got simple selector:" << endl;
+ (yyvsp[(4) - (4)].selector)->print();
+#endif
+ } else {
+ delete (yyvsp[(1) - (4)].selectorList);
+ delete (yyvsp[(4) - (4)].selector);
+ (yyval.selectorList) = 0;
+ }
+ }
+ break;
+
+ case 63:
+
+ {
+ delete (yyvsp[(1) - (2)].selectorList);
+ (yyval.selectorList) = 0;
+ }
+ break;
+
+ case 64:
+
+ {
+ (yyval.selector) = (yyvsp[(1) - (1)].selector);
+ }
+ break;
+
+ case 65:
+
+ {
+ if ( !(yyvsp[(1) - (3)].selector) || !(yyvsp[(3) - (3)].selector) ) {
+ delete (yyvsp[(1) - (3)].selector);
+ delete (yyvsp[(3) - (3)].selector);
+ (yyval.selector) = 0;
+ } else {
+ (yyval.selector) = (yyvsp[(3) - (3)].selector);
+ CSSSelector *end = (yyvsp[(3) - (3)].selector);
+ while( end->tagHistory )
+ end = end->tagHistory;
+ end->relation = (yyvsp[(2) - (3)].relation);
+ end->tagHistory = (yyvsp[(1) - (3)].selector);
+ }
+ }
+ break;
+
+ case 66:
+
+ {
+ delete (yyvsp[(1) - (2)].selector);
+ (yyval.selector) = 0;
+ }
+ break;
+
+ case 67:
+
+ { (yyval.string).string = 0; (yyval.string).length = 0; }
+ break;
+
+ case 68:
+
+ { static unsigned short star = '*'; (yyval.string).string = &star; (yyval.string).length = 1; }
+ break;
+
+ case 69:
+
+ { (yyval.string) = (yyvsp[(1) - (2)].string); }
+ break;
+
+ case 70:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->tag = (yyvsp[(1) - (2)].element);
+ }
+ break;
+
+ case 71:
+
+ {
+ (yyval.selector) = (yyvsp[(2) - (3)].selector);
+ if ( (yyval.selector) )
+ (yyval.selector)->tag = (yyvsp[(1) - (3)].element);
+ }
+ break;
+
+ case 72:
+
+ {
+ (yyval.selector) = (yyvsp[(1) - (2)].selector);
+ if ( (yyval.selector) )
+ (yyval.selector)->tag = makeId(static_cast<CSSParser*>(parser)->defaultNamespace(), anyLocalName);
+ }
+ break;
+
+ case 73:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->tag = (yyvsp[(2) - (3)].element);
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if (p->styleElement && p->styleElement->isCSSStyleSheet())
+ static_cast<CSSStyleSheetImpl*>(p->styleElement)->determineNamespace((yyval.selector)->tag, domString((yyvsp[(1) - (3)].string)));
+ }
+ break;
+
+ case 74:
+
+ {
+ (yyval.selector) = (yyvsp[(3) - (4)].selector);
+ if ((yyval.selector)) {
+ (yyval.selector)->tag = (yyvsp[(2) - (4)].element);
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if (p->styleElement && p->styleElement->isCSSStyleSheet())
+ static_cast<CSSStyleSheetImpl*>(p->styleElement)->determineNamespace((yyval.selector)->tag, domString((yyvsp[(1) - (4)].string)));
+ }
+ }
+ break;
+
+ case 75:
+
+ {
+ (yyval.selector) = (yyvsp[(2) - (3)].selector);
+ if ((yyval.selector)) {
+ (yyval.selector)->tag = makeId(anyNamespace, anyLocalName);
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if (p->styleElement && p->styleElement->isCSSStyleSheet())
+ static_cast<CSSStyleSheetImpl*>(p->styleElement)->determineNamespace((yyval.selector)->tag, domString((yyvsp[(1) - (3)].string)));
+ }
+ }
+ break;
+
+ case 76:
+
+ {
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ DOM::DocumentImpl *doc = p->document();
+ QString tag = qString((yyvsp[(1) - (1)].string));
+ if ( doc ) {
+ if (doc->isHTMLDocument())
+ tag = tag.lower();
+ const DOMString dtag(tag);
+ (yyval.element) = makeId(p->defaultNamespace(), doc->getId(NodeImpl::ElementId, dtag.implementation(), false, true));
+ } else {
+ (yyval.element) = makeId(p->defaultNamespace(), tdehtml::getTagID(tag.lower().ascii(), tag.length()));
+ // this case should never happen - only when loading
+ // the default stylesheet - which must not contain unknown tags
+// assert($$ != 0);
+ }
+ }
+ break;
+
+ case 77:
+
+ {
+ (yyval.element) = makeId(static_cast<CSSParser*>(parser)->defaultNamespace(), anyLocalName);
+ }
+ break;
+
+ case 78:
+
+ {
+ (yyval.selector) = (yyvsp[(1) - (1)].selector);
+ (yyval.selector)->nonCSSHint = static_cast<CSSParser *>(parser)->nonCSSHint;
+ }
+ break;
+
+ case 79:
+
+ {
+ (yyval.selector) = (yyvsp[(1) - (2)].selector);
+ if ( (yyval.selector) ) {
+ CSSSelector *end = (yyvsp[(1) - (2)].selector);
+ while( end->tagHistory )
+ end = end->tagHistory;
+ end->relation = CSSSelector::SubSelector;
+ end->tagHistory = (yyvsp[(2) - (2)].selector);
+ }
+ }
+ break;
+
+ case 80:
+
+ {
+ delete (yyvsp[(1) - (2)].selector);
+ (yyval.selector) = 0;
+ }
+ break;
+
+ case 81:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->match = CSSSelector::Id;
+ (yyval.selector)->attr = ATTR_ID;
+ (yyval.selector)->value = domString((yyvsp[(1) - (1)].string));
+ }
+ break;
+
+ case 85:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->match = CSSSelector::Class;
+ (yyval.selector)->attr = ATTR_CLASS;
+ (yyval.selector)->value = domString((yyvsp[(2) - (2)].string));
+ }
+ break;
+
+ case 86:
+
+ {
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ DOM::DocumentImpl *doc = p->document();
+
+ QString attr = qString((yyvsp[(1) - (2)].string));
+ if ( doc ) {
+ if (doc->isHTMLDocument())
+ attr = attr.lower();
+ const DOMString dattr(attr);
+#ifdef APPLE_CHANGES
+ (yyval.attribute) = doc->attrId(0, dattr.implementation(), false);
+#else
+ (yyval.attribute) = doc->getId(NodeImpl::AttributeId, dattr.implementation(), false, true);
+#endif
+ } else {
+ (yyval.attribute) = tdehtml::getAttrID(attr.lower().ascii(), attr.length());
+ // this case should never happen - only when loading
+ // the default stylesheet - which must not contain unknown attributes
+ assert((yyval.attribute) != 0);
+ }
+ }
+ break;
+
+ case 87:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->attr = (yyvsp[(3) - (4)].attribute);
+ (yyval.selector)->match = CSSSelector::Set;
+ }
+ break;
+
+ case 88:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->attr = (yyvsp[(3) - (8)].attribute);
+ (yyval.selector)->match = (yyvsp[(4) - (8)].match);
+ (yyval.selector)->value = domString((yyvsp[(6) - (8)].string));
+ }
+ break;
+
+ case 89:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->attr = (yyvsp[(4) - (5)].attribute);
+ (yyval.selector)->match = CSSSelector::Set;
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if (p->styleElement && p->styleElement->isCSSStyleSheet())
+ static_cast<CSSStyleSheetImpl*>(p->styleElement)->determineNamespace((yyval.selector)->attr, domString((yyvsp[(3) - (5)].string)));
+ }
+ break;
+
+ case 90:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->attr = (yyvsp[(4) - (9)].attribute);
+ (yyval.selector)->match = (CSSSelector::Match)(yyvsp[(5) - (9)].match);
+ (yyval.selector)->value = domString((yyvsp[(7) - (9)].string));
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if (p->styleElement && p->styleElement->isCSSStyleSheet())
+ static_cast<CSSStyleSheetImpl*>(p->styleElement)->determineNamespace((yyval.selector)->attr, domString((yyvsp[(3) - (9)].string)));
+ }
+ break;
+
+ case 91:
+
+ {
+ (yyval.match) = CSSSelector::Exact;
+ }
+ break;
+
+ case 92:
+
+ {
+ (yyval.match) = CSSSelector::List;
+ }
+ break;
+
+ case 93:
+
+ {
+ (yyval.match) = CSSSelector::Hyphen;
+ }
+ break;
+
+ case 94:
+
+ {
+ (yyval.match) = CSSSelector::Begin;
+ }
+ break;
+
+ case 95:
+
+ {
+ (yyval.match) = CSSSelector::End;
+ }
+ break;
+
+ case 96:
+
+ {
+ (yyval.match) = CSSSelector::Contain;
+ }
+ break;
+
+ case 99:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->match = CSSSelector::PseudoClass;
+ (yyval.selector)->value = domString((yyvsp[(2) - (2)].string));
+ }
+ break;
+
+ case 100:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->match = CSSSelector::PseudoElement;
+ (yyval.selector)->value = domString((yyvsp[(3) - (3)].string));
+ }
+ break;
+
+ case 101:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->match = CSSSelector::PseudoClass;
+ (yyval.selector)->string_arg = domString((yyvsp[(3) - (4)].string));
+ (yyval.selector)->value = domString((yyvsp[(2) - (4)].string));
+ }
+ break;
+
+ case 102:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->match = CSSSelector::PseudoClass;
+ (yyval.selector)->string_arg = QString::number((yyvsp[(3) - (4)].val));
+ (yyval.selector)->value = domString((yyvsp[(2) - (4)].string));
+ }
+ break;
+
+ case 103:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->match = CSSSelector::PseudoClass;
+ (yyval.selector)->string_arg = domString((yyvsp[(3) - (4)].string));
+ (yyval.selector)->value = domString((yyvsp[(2) - (4)].string));
+ }
+ break;
+
+ case 104:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->match = CSSSelector::PseudoClass;
+ (yyval.selector)->string_arg = domString((yyvsp[(3) - (4)].string));
+ (yyval.selector)->value = domString((yyvsp[(2) - (4)].string));
+ }
+ break;
+
+ case 105:
+
+ {
+ (yyval.selector) = new CSSSelector();
+ (yyval.selector)->match = CSSSelector::PseudoClass;
+ (yyval.selector)->simpleSelector = (yyvsp[(4) - (5)].selector);
+ (yyval.selector)->value = domString((yyvsp[(2) - (5)].string));
+ }
+ break;
+
+ case 106:
+
+ {
+ (yyval.ok) = (yyvsp[(3) - (4)].ok);
+ }
+ break;
+
+ case 107:
+
+ {
+ (yyval.ok) = false;
+ }
+ break;
+
+ case 108:
+
+ {
+ (yyval.ok) = (yyvsp[(3) - (4)].ok);
+ }
+ break;
+
+ case 109:
+
+ {
+ (yyval.ok) = (yyvsp[(3) - (5)].ok);
+ if ( (yyvsp[(4) - (5)].ok) )
+ (yyval.ok) = (yyvsp[(4) - (5)].ok);
+ }
+ break;
+
+ case 110:
+
+ {
+ (yyval.ok) = (yyvsp[(3) - (5)].ok);
+ }
+ break;
+
+ case 111:
+
+ {
+ (yyval.ok) = (yyvsp[(1) - (3)].ok);
+ }
+ break;
+
+ case 112:
+
+ {
+ (yyval.ok) = false;
+ }
+ break;
+
+ case 113:
+
+ {
+ (yyval.ok) = (yyvsp[(1) - (4)].ok);
+ if ( (yyvsp[(2) - (4)].ok) )
+ (yyval.ok) = (yyvsp[(2) - (4)].ok);
+ }
+ break;
+
+ case 114:
+
+ {
+ (yyval.ok) = (yyvsp[(1) - (4)].ok);
+ }
+ break;
+
+ case 115:
+
+ {
+ (yyval.ok) = false;
+ CSSParser *p = static_cast<CSSParser *>(parser);
+ if ( (yyvsp[(1) - (5)].prop_id) && (yyvsp[(4) - (5)].valueList) ) {
+ p->valueList = (yyvsp[(4) - (5)].valueList);
+#ifdef CSS_DEBUG
+ kdDebug( 6080 ) << " got property: " << (yyvsp[(1) - (5)].prop_id) <<
+ ((yyvsp[(5) - (5)].b)?" important":"")<< endl;
+#endif
+ bool ok = p->parseValue( (yyvsp[(1) - (5)].prop_id), (yyvsp[(5) - (5)].b) );
+ if ( ok )
+ (yyval.ok) = ok;
+#ifdef CSS_DEBUG
+ else
+ kdDebug( 6080 ) << " couldn't parse value!" << endl;
+#endif
+ } else {
+ delete (yyvsp[(4) - (5)].valueList);
+ }
+ delete p->valueList;
+ p->valueList = 0;
+ }
+ break;
+
+ case 116:
+
+ {
+ (yyval.ok) = false;
+ }
+ break;
+
+ case 117:
+
+ {
+ QString str = qString((yyvsp[(1) - (2)].string));
+ (yyval.prop_id) = getPropertyID( str.lower().latin1(), str.length() );
+ }
+ break;
+
+ case 118:
+
+ { (yyval.b) = true; }
+ break;
+
+ case 119:
+
+ { (yyval.b) = false; }
+ break;
+
+ case 120:
+
+ {
+ (yyval.valueList) = new ValueList;
+ (yyval.valueList)->addValue( (yyvsp[(1) - (1)].value) );
+ }
+ break;
+
+ case 121:
+
+ {
+ (yyval.valueList) = (yyvsp[(1) - (3)].valueList);
+ if ( (yyval.valueList) ) {
+ if ( (yyvsp[(2) - (3)].tok) ) {
+ Value v;
+ v.id = 0;
+ v.unit = Value::Operator;
+ v.iValue = (yyvsp[(2) - (3)].tok);
+ (yyval.valueList)->addValue( v );
+ }
+ (yyval.valueList)->addValue( (yyvsp[(3) - (3)].value) );
+ }
+ }
+ break;
+
+ case 122:
+
+ {
+ (yyval.tok) = '/';
+ }
+ break;
+
+ case 123:
+
+ {
+ (yyval.tok) = ',';
+ }
+ break;
+
+ case 124:
+
+ {
+ (yyval.tok) = 0;
+ }
+ break;
+
+ case 125:
+
+ { (yyval.value) = (yyvsp[(1) - (1)].value); }
+ break;
+
+ case 126:
+
+ { (yyval.value) = (yyvsp[(2) - (2)].value); (yyval.value).fValue *= (yyvsp[(1) - (2)].val); }
+ break;
+
+ case 127:
+
+ { (yyval.value).id = 0; (yyval.value).string = (yyvsp[(1) - (2)].string); (yyval.value).unit = CSSPrimitiveValue::CSS_DIMENSION; }
+ break;
+
+ case 128:
+
+ { (yyval.value).id = 0; (yyval.value).string = (yyvsp[(1) - (2)].string); (yyval.value).unit = CSSPrimitiveValue::CSS_STRING; }
+ break;
+
+ case 129:
+
+ {
+ QString str = qString( (yyvsp[(1) - (2)].string) );
+ (yyval.value).id = getValueID( str.lower().latin1(), str.length() );
+ (yyval.value).unit = CSSPrimitiveValue::CSS_IDENT;
+ (yyval.value).string = (yyvsp[(1) - (2)].string);
+ }
+ break;
+
+ case 130:
+
+ { (yyval.value).id = 0; (yyval.value).string = (yyvsp[(1) - (2)].string); (yyval.value).unit = CSSPrimitiveValue::CSS_URI; }
+ break;
+
+ case 131:
+
+ { (yyval.value).id = 0; (yyval.value).iValue = 0; (yyval.value).unit = CSSPrimitiveValue::CSS_UNKNOWN;/* ### */ }
+ break;
+
+ case 132:
+
+ { (yyval.value).id = 0; (yyval.value).string = (yyvsp[(1) - (1)].string); (yyval.value).unit = CSSPrimitiveValue::CSS_RGBCOLOR; }
+ break;
+
+ case 133:
+
+ {
+ (yyval.value) = (yyvsp[(1) - (1)].value);
+ }
+ break;
+
+ case 134:
+
+ { (yyval.value).id = 0; (yyval.value).isInt = true; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_NUMBER; }
+ break;
+
+ case 135:
+
+ { (yyval.value).id = 0; (yyval.value).isInt = false; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_NUMBER; }
+ break;
+
+ case 136:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_PERCENTAGE; }
+ break;
+
+ case 137:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_PX; }
+ break;
+
+ case 138:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_CM; }
+ break;
+
+ case 139:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_MM; }
+ break;
+
+ case 140:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_IN; }
+ break;
+
+ case 141:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_PT; }
+ break;
+
+ case 142:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_PC; }
+ break;
+
+ case 143:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_DEG; }
+ break;
+
+ case 144:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_RAD; }
+ break;
+
+ case 145:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_GRAD; }
+ break;
+
+ case 146:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_MS; }
+ break;
+
+ case 147:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_S; }
+ break;
+
+ case 148:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_HZ; }
+ break;
+
+ case 149:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_KHZ; }
+ break;
+
+ case 150:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_EMS; }
+ break;
+
+ case 151:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = Value::Q_EMS; }
+ break;
+
+ case 152:
+
+ { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].val); (yyval.value).unit = CSSPrimitiveValue::CSS_EXS; }
+ break;
+
+ case 153:
+
+ {
+ Function *f = new Function;
+ f->name = (yyvsp[(1) - (5)].string);
+ f->args = (yyvsp[(3) - (5)].valueList);
+ (yyval.value).id = 0;
+ (yyval.value).unit = Value::Function;
+ (yyval.value).function = f;
+ }
+ break;
+
+ case 154:
+
+ {
+ Function *f = new Function;
+ f->name = (yyvsp[(1) - (3)].string);
+ f->args = 0;
+ (yyval.value).id = 0;
+ (yyval.value).unit = Value::Function;
+ (yyval.value).function = f;
+ }
+ break;
+
+ case 155:
+
+ { (yyval.string) = (yyvsp[(1) - (2)].string); }
+ break;
+
+ case 156:
+
+ {
+ (yyval.rule) = 0;
+#ifdef CSS_DEBUG
+ kdDebug( 6080 ) << "skipped invalid @-rule" << endl;
+#endif
+ }
+ break;
+
+ case 157:
+
+ {
+ (yyval.rule) = 0;
+#ifdef CSS_DEBUG
+ kdDebug( 6080 ) << "skipped invalid @-rule" << endl;
+#endif
+ }
+ break;
+
+ case 158:
+
+ {
+ (yyval.rule) = 0;
+#ifdef CSS_DEBUG
+ kdDebug( 6080 ) << "skipped invalid rule" << endl;
+#endif
+ }
+ break;
+
+
+
+ default: break;
+ }
+ /* User semantic actions sometimes alter yychar, and that requires
+ that yytoken be updated with the new translation. We take the
+ approach of translating immediately before every use of yytoken.
+ One alternative is translating here after every semantic action,
+ but that translation would be missed if the semantic action invokes
+ YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
+ if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
+ incorrect destructor might then be invoked immediately. In the
+ case of YYERROR or YYBACKUP, subsequent parser actions might lead
+ to an incorrect destructor call or verbose syntax error message
+ before the lookahead is translated. */
+ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
+
+ YYPOPSTACK (yylen);
+ yylen = 0;
+ YY_STACK_PRINT (yyss, yyssp);
+
+ *++yyvsp = yyval;
+
+ /* Now `shift' the result of the reduction. Determine what state
+ that goes to, based on the state we popped back to and the rule
+ number reduced by. */
+
+ yyn = yyr1[yyn];
+
+ yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
+ if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
+ yystate = yytable[yystate];
+ else
+ yystate = yydefgoto[yyn - YYNTOKENS];
+
+ goto yynewstate;
+
+
+/*------------------------------------.
+| yyerrlab -- here on detecting error |
+`------------------------------------*/
+yyerrlab:
+ /* Make sure we have latest lookahead translation. See comments at
+ user semantic actions for why this is necessary. */
+ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
+
+ /* If not already recovering from an error, report this error. */
+ if (!yyerrstatus)
+ {
+ ++yynerrs;
+#if ! YYERROR_VERBOSE
+ yyerror (YY_("syntax error"));
+#else
+# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
+ yyssp, yytoken)
+ {
+ char const *yymsgp = YY_("syntax error");
+ int yysyntax_error_status;
+ yysyntax_error_status = YYSYNTAX_ERROR;
+ if (yysyntax_error_status == 0)
+ yymsgp = yymsg;
+ else if (yysyntax_error_status == 1)
+ {
+ if (yymsg != yymsgbuf)
+ YYSTACK_FREE (yymsg);
+ yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
+ if (!yymsg)
+ {
+ yymsg = yymsgbuf;
+ yymsg_alloc = sizeof yymsgbuf;
+ yysyntax_error_status = 2;
+ }
+ else
+ {
+ yysyntax_error_status = YYSYNTAX_ERROR;
+ yymsgp = yymsg;
+ }
+ }
+ yyerror (yymsgp);
+ if (yysyntax_error_status == 2)
+ goto yyexhaustedlab;
+ }
+# undef YYSYNTAX_ERROR
+#endif
+ }
+
+
+
+ if (yyerrstatus == 3)
+ {
+ /* If just tried and failed to reuse lookahead token after an
+ error, discard it. */
+
+ if (yychar <= YYEOF)
+ {
+ /* Return failure if at end of input. */
+ if (yychar == YYEOF)
+ YYABORT;
+ }
+ else
+ {
+ yydestruct ("Error: discarding",
+ yytoken, &yylval);
+ yychar = YYEMPTY;
+ }
+ }
+
+ /* Else will try to reuse lookahead token after shifting the error
+ token. */
+ goto yyerrlab1;
+
+
+/*---------------------------------------------------.
+| yyerrorlab -- error raised explicitly by YYERROR. |
+`---------------------------------------------------*/
+yyerrorlab:
+
+ /* Pacify compilers like GCC when the user code never invokes
+ YYERROR and the label yyerrorlab therefore never appears in user
+ code. */
+ if (/*CONSTCOND*/ 0)
+ goto yyerrorlab;
+
+ /* Do not reclaim the symbols of the rule which action triggered
+ this YYERROR. */
+ YYPOPSTACK (yylen);
+ yylen = 0;
+ YY_STACK_PRINT (yyss, yyssp);
+ yystate = *yyssp;
+ goto yyerrlab1;
+
+
+/*-------------------------------------------------------------.
+| yyerrlab1 -- common code for both syntax error and YYERROR. |
+`-------------------------------------------------------------*/
+yyerrlab1:
+ yyerrstatus = 3; /* Each real token shifted decrements this. */
+
+ for (;;)
+ {
+ yyn = yypact[yystate];
+ if (!yypact_value_is_default (yyn))
+ {
+ yyn += YYTERROR;
+ if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
+ {
+ yyn = yytable[yyn];
+ if (0 < yyn)
+ break;
+ }
+ }
+
+ /* Pop the current state because it cannot handle the error token. */
+ if (yyssp == yyss)
+ YYABORT;
+
+
+ yydestruct ("Error: popping",
+ yystos[yystate], yyvsp);
+ YYPOPSTACK (1);
+ yystate = *yyssp;
+ YY_STACK_PRINT (yyss, yyssp);
+ }
+
+ *++yyvsp = yylval;
+
+
+ /* Shift the error token. */
+ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
+
+ yystate = yyn;
+ goto yynewstate;
+
+
+/*-------------------------------------.
+| yyacceptlab -- YYACCEPT comes here. |
+`-------------------------------------*/
+yyacceptlab:
+ yyresult = 0;
+ goto yyreturn;
+
+/*-----------------------------------.
+| yyabortlab -- YYABORT comes here. |
+`-----------------------------------*/
+yyabortlab:
+ yyresult = 1;
+ goto yyreturn;
+
+#if !defined(yyoverflow) || YYERROR_VERBOSE
+/*-------------------------------------------------.
+| yyexhaustedlab -- memory exhaustion comes here. |
+`-------------------------------------------------*/
+yyexhaustedlab:
+ yyerror (YY_("memory exhausted"));
+ yyresult = 2;
+ /* Fall through. */
+#endif
+
+yyreturn:
+ if (yychar != YYEMPTY)
+ {
+ /* Make sure we have latest lookahead translation. See comments at
+ user semantic actions for why this is necessary. */
+ yytoken = YYTRANSLATE (yychar);
+ yydestruct ("Cleanup: discarding lookahead",
+ yytoken, &yylval);
+ }
+ /* Do not reclaim the symbols of the rule which action triggered
+ this YYABORT or YYACCEPT. */
+ YYPOPSTACK (yylen);
+ YY_STACK_PRINT (yyss, yyssp);
+ while (yyssp != yyss)
+ {
+ yydestruct ("Cleanup: popping",
+ yystos[*yyssp], yyvsp);
+ YYPOPSTACK (1);
+ }
+#ifndef yyoverflow
+ if (yyss != yyssa)
+ YYSTACK_FREE (yyss);
+#endif
+#if YYERROR_VERBOSE
+ if (yymsg != yymsgbuf)
+ YYSTACK_FREE (yymsg);
+#endif
+ /* Make sure YYID is used. */
+ return YYID (yyresult);
+}
+
+
+
+
+
+