enum | litehtml::css_token_type {
litehtml::WHITESPACE = ' '
, litehtml::_EOF = EOF
, litehtml::LEFT_BRACE = '{'
, litehtml::RIGHT_BRACE = '}'
,
litehtml::LEFT_BRACKET = '['
, litehtml::RIGHT_BRACKET = ']'
, litehtml::LEFT_PAREN = '('
, litehtml::RIGHT_PAREN = ')'
,
litehtml::COLON = ':'
, litehtml::SEMICOLON = ';'
, litehtml::COMMA = ','
, litehtml::BANG = '!'
,
litehtml::DOT = '.'
, litehtml::AMPERSAND = '&'
, litehtml::IDENT = -20
, litehtml::FUNCTION
,
litehtml::AT_KEYWORD
, litehtml::HASH
, litehtml::STRING
, litehtml::BAD_STRING
,
litehtml::URL
, litehtml::BAD_URL
, litehtml::NUMBER
, litehtml::PERCENTAGE
,
litehtml::DIMENSION
, litehtml::CDO
, litehtml::CDC
, litehtml::CV_FUNCTION = -100
,
litehtml::CURLY_BLOCK = -100 - '{'
, litehtml::ROUND_BLOCK = -100 - '('
, litehtml::SQUARE_BLOCK = -100 - '['
} |