summaryrefslogtreecommitdiff
path: root/include/libcss/properties.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-08-21 09:45:13 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-08-21 09:45:13 +0000
commit5c20bde8b544d23fd024dad7ace9b46849336ebf (patch)
tree07dc508d51d281b7553e471a42ba3684018fe512 /include/libcss/properties.h
parent5bd907c74151d0bbe1859c37cb2bde898ab72e2f (diff)
downloadlibcss-5c20bde8b544d23fd024dad7ace9b46849336ebf.tar.gz
libcss-5c20bde8b544d23fd024dad7ace9b46849336ebf.tar.bz2
-libcss-align
svn path=/trunk/libcss/; revision=9378
Diffstat (limited to 'include/libcss/properties.h')
-rw-r--r--include/libcss/properties.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/include/libcss/properties.h b/include/libcss/properties.h
index e0ace18..38b264e 100644
--- a/include/libcss/properties.h
+++ b/include/libcss/properties.h
@@ -109,7 +109,9 @@ enum css_properties_e {
CSS_PROP_WORD_SPACING = 0x061,
CSS_PROP_Z_INDEX = 0x062,
- CSS_N_PROPERTIES = CSS_PROP_Z_INDEX + 1
+ CSS_PROP_LIBCSS_ALIGN = 0x063,
+
+ CSS_N_PROPERTIES = CSS_PROP_LIBCSS_ALIGN + 1
};
@@ -595,4 +597,13 @@ enum css_z_index_e {
CSS_Z_INDEX_AUTO = 0x2
};
+enum css_libcss_align_e {
+ CSS_LIBCSS_ALIGN_INHERIT = 0x0,
+ CSS_LIBCSS_ALIGN_LEFT = 0x1,
+ CSS_LIBCSS_ALIGN_RIGHT = 0x2,
+ CSS_LIBCSS_ALIGN_CENTER = 0x3,
+ CSS_LIBCSS_ALIGN_JUSTIFY = 0x4,
+ CSS_LIBCSS_ALIGN_DEFAULT = 0x5
+};
+
#endif