summaryrefslogtreecommitdiff
path: root/src/parse/propstrings.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2012-02-03 13:30:52 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2012-02-03 13:30:52 +0000
commitbd8ef0f5e2ec383b528b825eba4724b90643cbef (patch)
treebf10e3dd6db913e2db44227a971582541a116150 /src/parse/propstrings.c
parent32ed7d0984f0dd872b4aaac0ac12c18471f291a0 (diff)
downloadlibcss-bd8ef0f5e2ec383b528b825eba4724b90643cbef.tar.gz
libcss-bd8ef0f5e2ec383b528b825eba4724b90643cbef.tar.bz2
Add parsing of CSS3 Multi-column layout module shorthand properties. (columns & column-rule)
svn path=/trunk/libcss/; revision=13416
Diffstat (limited to 'src/parse/propstrings.c')
-rw-r--r--src/parse/propstrings.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parse/propstrings.c b/src/parse/propstrings.c
index 9ea4707..7a4abd5 100644
--- a/src/parse/propstrings.c
+++ b/src/parse/propstrings.c
@@ -112,9 +112,11 @@ const stringmap_entry stringmap[LAST_KNOWN] = {
{ "clear", SLEN("clear") },
{ "clip", SLEN("clip") },
{ "color", SLEN("color") },
+ { "columns", SLEN("columns") },
{ "column-count", SLEN("column-count") },
{ "column-fill", SLEN("column-fill") },
{ "column-gap", SLEN("column-gap") },
+ { "column-rule", SLEN("column-rule") },
{ "column-rule-color", SLEN("column-rule-color") },
{ "column-rule-style", SLEN("column-rule-style") },
{ "column-rule-width", SLEN("column-rule_width") },