summaryrefslogtreecommitdiff
path: root/render/css.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2002-12-27 20:08:18 +0000
committerJames Bursa <james@netsurf-browser.org>2002-12-27 20:08:18 +0000
commita6c8472922a373f8cac2d99850b49090e3bea068 (patch)
treef9b718074b1985f721884c8e6cde2f31f9498e72 /render/css.h
parentffe6ce5f5e159076755f2e8245767bf4bae0d635 (diff)
downloadnetsurf-a6c8472922a373f8cac2d99850b49090e3bea068.tar.gz
netsurf-a6c8472922a373f8cac2d99850b49090e3bea068.tar.bz2
[project @ 2002-12-27 20:08:18 by bursa]
Implement color property. svn path=/import/netsurf/; revision=63
Diffstat (limited to 'render/css.h')
-rw-r--r--render/css.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/render/css.h b/render/css.h
index d03073fc5..8da5b1aa1 100644
--- a/render/css.h
+++ b/render/css.h
@@ -1,5 +1,5 @@
/**
- * $Id: css.h,v 1.7 2002/08/11 23:02:25 bursa Exp $
+ * $Id: css.h,v 1.8 2002/12/27 20:08:18 bursa Exp $
*/
#ifndef _NETSURF_RENDER_CSS_H_
@@ -11,7 +11,7 @@
* structures and typedefs
*/
-typedef unsigned long colour; /* 0xrrggbb */
+typedef unsigned long colour; /* 0xbbggrr */
#define TRANSPARENT 0x1000000
struct css_length {
@@ -20,7 +20,9 @@ struct css_length {
};
struct css_style {
+ colour background_color;
css_clear clear;
+ colour color;
css_display display;
css_float float_;