css: Add <time> type to css number stuff

This commit is contained in:
Benjamin Otte
2012-04-01 04:02:34 +02:00
parent 68b7d3e410
commit 662d6787f3
4 changed files with 15 additions and 3 deletions

View File

@ -30,7 +30,8 @@ typedef enum /*< skip >*/ {
GTK_CSS_PARSE_NUMBER = (1 << 2),
GTK_CSS_NUMBER_AS_PIXELS = (1 << 3),
GTK_CSS_PARSE_LENGTH = (1 << 4),
GTK_CSS_PARSE_ANGLE = (1 << 5)
GTK_CSS_PARSE_ANGLE = (1 << 5),
GTK_CSS_PARSE_TIME = (1 << 6)
} GtkCssNumberParseFlags;
typedef struct _GtkCssParser GtkCssParser;