diff options
Diffstat (limited to 'src/html_common.hh')
-rw-r--r-- | src/html_common.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/html_common.hh b/src/html_common.hh index bfcb8123..cf5c8114 100644 --- a/src/html_common.hh +++ b/src/html_common.hh @@ -64,6 +64,11 @@ typedef enum { } DilloHtmlTableMode; typedef enum { + DILLO_HTML_TABLE_BORDER_SEPARATE, + DILLO_HTML_TABLE_BORDER_COLLAPSE +} DilloHtmlTableBorderMode; + +typedef enum { HTML_LIST_NONE, HTML_LIST_UNORDERED, HTML_LIST_ORDERED @@ -96,6 +101,7 @@ struct _DilloHtmlImage { struct _DilloHtmlState { DilloHtmlParseMode parse_mode; DilloHtmlTableMode table_mode; + DilloHtmlTableBorderMode table_border_mode; bool cell_text_align_set; DilloHtmlListMode list_type; |