diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2012-01-21 22:32:41 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2012-01-21 22:32:41 +0100 |
commit | ca3f6616f18019feec480af2e4d5898bad3969d0 (patch) | |
tree | a955dfe1c2d9f3bf114f001e503c5dcf2a8fad96 /src | |
parent | a987a45a6d6bdf27aecf1ef0625801834ab27e44 (diff) |
add inline-block to possible display: values
Diffstat (limited to 'src')
-rw-r--r-- | src/cssparser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cssparser.cc b/src/cssparser.cc index 306aa58c..ca41781e 100644 --- a/src/cssparser.cc +++ b/src/cssparser.cc @@ -71,8 +71,8 @@ static const char *const Css_cursor_enum_vals[] = { }; static const char *const Css_display_enum_vals[] = { - "block", "inline", "list-item", "none", "table", "table-row-group", - "table-header-group", "table-footer-group", "table-row", + "block", "inline", "inline-block", "list-item", "none", "table", + "table-row-group", "table-header-group", "table-footer-group", "table-row", "table-cell", NULL }; |