aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/css.hh6
-rw-r--r--src/cssparser.hh6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/css.hh b/src/css.hh
index 57314955..4c43b313 100644
--- a/src/css.hh
+++ b/src/css.hh
@@ -15,6 +15,12 @@ typedef enum {
} CssPrimaryOrder;
typedef enum {
+ CSS_ORIGIN_USER_AGENT,
+ CSS_ORIGIN_USER,
+ CSS_ORIGIN_AUTHOR,
+} CssOrigin;
+
+typedef enum {
CSS_TYPE_INTEGER, /* This type is only used internally, for x-*
properties. */
CSS_TYPE_ENUM, /* Value is i, if represented by
diff --git a/src/cssparser.hh b/src/cssparser.hh
index c48b695f..bfeca95d 100644
--- a/src/cssparser.hh
+++ b/src/cssparser.hh
@@ -3,12 +3,6 @@
#include "css.hh"
-typedef enum {
- CSS_ORIGIN_USER_AGENT,
- CSS_ORIGIN_USER,
- CSS_ORIGIN_AUTHOR,
-} CssOrigin;
-
typedef struct {
const char *symbol;
const CssValueType type[3];