diff options
author | John Mark Bell <jmb@netsurf-browser.org> | 2009-02-11 00:28:20 +0000 |
---|---|---|
committer | John Mark Bell <jmb@netsurf-browser.org> | 2009-02-11 00:28:20 +0000 |
commit | f3cabc6af719b10252471883f41ffa9828a7c1f2 (patch) | |
tree | c1ffb18edd0c5164c6a15978cf11607306b6555f /include/libcss | |
parent | 2053d5eef002abf8afb109a984ad0da881e7f647 (diff) | |
download | libcss-f3cabc6af719b10252471883f41ffa9828a7c1f2.tar.gz libcss-f3cabc6af719b10252471883f41ffa9828a7c1f2.tar.bz2 |
Restore the magical properties of background-repeat values (the bottom two bits form a bitfield of dimensions to tile in).
Implement a couple more property handlers
svn path=/trunk/libcss/; revision=6416
Diffstat (limited to 'include/libcss')
-rw-r--r-- | include/libcss/properties.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/libcss/properties.h b/include/libcss/properties.h index 159ad40..0be9ba2 100644 --- a/include/libcss/properties.h +++ b/include/libcss/properties.h @@ -34,10 +34,10 @@ enum css_background_position { enum css_background_repeat { CSS_BACKGROUND_REPEAT_INHERIT = 0x0, - CSS_BACKGROUND_REPEAT_NO_REPEAT = 0x1, - CSS_BACKGROUND_REPEAT_REPEAT_X = 0x2, - CSS_BACKGROUND_REPEAT_REPEAT_Y = 0x3, - CSS_BACKGROUND_REPEAT_REPEAT = 0x4 + CSS_BACKGROUND_REPEAT_REPEAT_X = 0x1, + CSS_BACKGROUND_REPEAT_REPEAT_Y = 0x2, + CSS_BACKGROUND_REPEAT_REPEAT = 0x3, + CSS_BACKGROUND_REPEAT_NO_REPEAT = 0x4 }; enum css_border_collapse { |