diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2010-11-15 17:08:26 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2010-11-15 17:08:26 -0300 |
commit | 05d74c53219b17ad111a64b0fe4beed5a0752857 (patch) | |
tree | db6a5b8095712279efbb974f04772d90d207205b /src/html_common.hh | |
parent | 0d6db6eb1e23d5de55383175862aa8142ef5cd85 (diff) | |
parent | f83d4156fb156e73340e116360cfc3a9c1b3bd73 (diff) |
merge
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; |