summaryrefslogtreecommitdiff
path: root/src/table.hh
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2012-01-21 22:48:51 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2012-01-21 22:48:51 +0100
commit951fde7f55e2c74f58af69c71126c48e30425581 (patch)
treeb8d26fe91c89c99859b3feb5b11fe6165998b979 /src/table.hh
parentf016830aea4fdf4afbda03cd29d87568b3711d1c (diff)
add support for the CSS display: property
Diffstat (limited to 'src/table.hh')
-rw-r--r--src/table.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/table.hh b/src/table.hh
index aca717ba..5417f681 100644
--- a/src/table.hh
+++ b/src/table.hh
@@ -12,8 +12,12 @@ class DilloHtml;
*/
void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize);
+void Html_tag_content_table(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_open_tr(DilloHtml *html, const char *tag, int tagsize);
+void Html_tag_content_tr(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_open_td(DilloHtml *html, const char *tag, int tagsize);
+void Html_tag_content_td(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_open_th(DilloHtml *html, const char *tag, int tagsize);
+void Html_tag_content_th(DilloHtml *html, const char *tag, int tagsize);
#endif /* __TABLE_HH__ */