diff options
-rw-r--r-- | config.h.in | 3 | ||||
-rw-r--r-- | dw/style.hh | 1 | ||||
-rw-r--r-- | src/cssparser.cc | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/config.h.in b/config.h.in index 58c33e0a..54501855 100644 --- a/config.h.in +++ b/config.h.in @@ -81,9 +81,6 @@ /* Define to the home page for this package. */ #undef PACKAGE_URL -/* Define to the home page for this package. */ -#undef PACKAGE_URL - /* Define to the version of this package. */ #undef PACKAGE_VERSION diff --git a/dw/style.hh b/dw/style.hh index 33be512d..73549553 100644 --- a/dw/style.hh +++ b/dw/style.hh @@ -247,6 +247,7 @@ enum DisplayType { DISPLAY_BLOCK, DISPLAY_INLINE, DISPLAY_LIST_ITEM, + DISPLAY_NONE, DISPLAY_TABLE, DISPLAY_TABLE_ROW_GROUP, DISPLAY_TABLE_HEADER_GROUP, diff --git a/src/cssparser.cc b/src/cssparser.cc index d0daf566..4eb20b74 100644 --- a/src/cssparser.cc +++ b/src/cssparser.cc @@ -59,7 +59,7 @@ static const char *const Css_cursor_enum_vals[] = { }; static const char *const Css_display_enum_vals[DISPLAY_LAST + 1] = { - "block", "inline", "list-item", "table", "table-row-group", + "block", "inline", "list-item", "none", "table", "table-row-group", "table-header-group", "table-footer-group", "table-row", "table-cell", NULL }; |