summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/parse/propstrings.c7
-rw-r--r--src/parse/propstrings.h4
2 files changed, 11 insertions, 0 deletions
diff --git a/src/parse/propstrings.c b/src/parse/propstrings.c
index 7a4abd5..35466eb 100644
--- a/src/parse/propstrings.c
+++ b/src/parse/propstrings.c
@@ -26,6 +26,13 @@ static css__propstrings_ctx css__propstrings;
const stringmap_entry stringmap[LAST_KNOWN] = {
{ "*", SLEN("*") },
+ { ":", SLEN(":") },
+ { ",", SLEN(",") },
+ { ";", SLEN(";") },
+ { "{", SLEN("{") },
+ { "}", SLEN("}") },
+ { "0", SLEN("0") },
+
{ "charset", SLEN("charset") },
{ "import", SLEN("import") },
{ "media", SLEN("media") },
diff --git a/src/parse/propstrings.h b/src/parse/propstrings.h
index 01108a8..2ed0743 100644
--- a/src/parse/propstrings.h
+++ b/src/parse/propstrings.h
@@ -14,6 +14,10 @@ enum {
/* Universal selector */
UNIVERSAL,
+ /* Common tokens */
+ COLON, COMMA, SEMICOLON, OPEN_CURLY_BRACE, CLOSE_CURLY_BRACE,
+ ZERO_VALUE,
+
/* At-rules */
CHARSET, LIBCSS_IMPORT, MEDIA, NAMESPACE, FONT_FACE, PAGE,