summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2015-10-06 12:33:59 +0200
committerTor Andersson <tor.andersson@artifex.com>2015-10-06 12:33:59 +0200
commitd97c9eda43563ca95b11e1da7ad43fd2a320d8e0 (patch)
tree8109cf501e07a53c4218a236c886238e7a53da1e /include
parentec80f5d9a3e5a44e0a7bec439d895bfb97f78fff (diff)
downloadmupdf-d97c9eda43563ca95b11e1da7ad43fd2a320d8e0.tar.xz
epub: Implement style 'visibility' attribute.
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/html.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mupdf/html.h b/include/mupdf/html.h
index d1519284..8f4e5073 100644
--- a/include/mupdf/html.h
+++ b/include/mupdf/html.h
@@ -94,6 +94,7 @@ enum { POS_STATIC, POS_RELATIVE, POS_ABSOLUTE, POS_FIXED };
enum { TA_LEFT, TA_RIGHT, TA_CENTER, TA_JUSTIFY };
enum { VA_BASELINE, VA_SUB, VA_SUPER, VA_TOP, VA_BOTTOM };
enum { BS_NONE, BS_SOLID };
+enum { V_VISIBLE, V_HIDDEN, V_COLLAPSE };
enum {
WS_COLLAPSE = 1,
@@ -138,6 +139,7 @@ struct fz_css_style_s
fz_css_number padding[4];
fz_css_number border_width[4];
fz_css_number text_indent;
+ char visibility;
char white_space;
char text_align;
char vertical_align;