summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/parse/properties.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/parse/properties.c b/src/parse/properties.c
index a070354..383fe04 100644
--- a/src/parse/properties.c
+++ b/src/parse/properties.c
@@ -6403,6 +6403,13 @@ css_error parse_colour_specifier(css_language *c,
UNUSED(c);
UNUSED(result);
+ /* IDENT(<colour name>) | HASH(rgb | rrggbb) |
+ * FUNCTION(rgb) [ [ NUMBER | PERCENTAGE ] ',' ] {3} ')'
+ *
+ * For quirks, NUMBER | DIMENSION | IDENT, too
+ * I.E. "123456" -> NUMBER, "1234f0" -> DIMENSION, "f00000" -> IDENT
+ */
+
/** \todo Parse colours */
/* For now, consume everything up to the end of the declaration or !,