From b1a8dce16cd3b0e1234b6e129d6baf7102994833 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Wed, 5 Nov 2003 16:25:35 +0000 Subject: [project @ 2003-11-05 16:25:35 by bursa] Improved text-decoration support. svn path=/import/netsurf/; revision=403 --- css/css.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'css/css.h') diff --git a/css/css.h b/css/css.h index 9bf843efe..4179690b2 100644 --- a/css/css.h +++ b/css/css.h @@ -26,6 +26,16 @@ struct css_length { css_unit unit; }; +typedef enum { + CSS_TEXT_DECORATION_NONE = 0x0, + CSS_TEXT_DECORATION_INHERIT = 0x1, + CSS_TEXT_DECORATION_UNDERLINE = 0x2, + CSS_TEXT_DECORATION_BLINK = 0x4, + CSS_TEXT_DECORATION_LINE_THROUGH = 0x8, + CSS_TEXT_DECORATION_OVERLINE = 0x10, + CSS_TEXT_DECORATION_UNKNOWN = 0x1000 +} css_text_decoration; + struct css_style { colour background_color; css_clear clear; -- cgit v1.2.3