From c6d7f24987a90bc61e408c4249a6a212276b4174 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 1 Jun 2014 18:32:37 +0100 Subject: Add support for CSS3 overflow-x and overflow-y properties. Now, overflow is a shorthand property setting both overflow-x and overflow-y. The getter for the computed overflow has been removed, and replaced with two for overflow-x and overflow-y. --- include/libcss/properties.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/libcss/properties.h') diff --git a/include/libcss/properties.h b/include/libcss/properties.h index bbb6baa..dbcd75a 100644 --- a/include/libcss/properties.h +++ b/include/libcss/properties.h @@ -74,7 +74,7 @@ enum css_properties_e { CSS_PROP_OUTLINE_COLOR = 0x039, CSS_PROP_OUTLINE_STYLE = 0x03a, CSS_PROP_OUTLINE_WIDTH = 0x03b, - CSS_PROP_OVERFLOW = 0x03c, + CSS_PROP_OVERFLOW_X = 0x03c, CSS_PROP_PADDING_TOP = 0x03d, CSS_PROP_PADDING_RIGHT = 0x03e, CSS_PROP_PADDING_BOTTOM = 0x03f, @@ -126,6 +126,7 @@ enum css_properties_e { CSS_PROP_COLUMN_SPAN = 0x06d, CSS_PROP_COLUMN_WIDTH = 0x06e, CSS_PROP_WRITING_MODE = 0x06f, + CSS_PROP_OVERFLOW_Y = 0x070, CSS_N_PROPERTIES }; -- cgit v1.2.3