diff options
author | Sebastian Rasmussen <sebras@gmail.com> | 2016-02-02 00:26:01 +0100 |
---|---|---|
committer | Sebastian Rasmussen <sebras@gmail.com> | 2016-02-10 01:12:32 +0100 |
commit | 93699403812c87a8d96d0029f37134cf86e86205 (patch) | |
tree | 21a541ccca78da25e8620eec0500315db392de73 /include | |
parent | f17c1a2a06eb04daabd381e7e9f374c3f76e77fa (diff) | |
download | mupdf-93699403812c87a8d96d0029f37134cf86e86205.tar.xz |
html: Support vertical alignment to top/bottom of parent box
Fixes http://bugs.ghostscript.com/show_bug.cgi?id=696004
Diffstat (limited to 'include')
-rw-r--r-- | include/mupdf/html.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mupdf/html.h b/include/mupdf/html.h index c734ea0d..33ee84c8 100644 --- a/include/mupdf/html.h +++ b/include/mupdf/html.h @@ -107,7 +107,7 @@ struct fz_css_match_s enum { DIS_NONE, DIS_BLOCK, DIS_INLINE, DIS_LIST_ITEM, DIS_INLINE_BLOCK }; 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 { VA_BASELINE, VA_SUB, VA_SUPER, VA_TOP, VA_BOTTOM, VA_TEXT_TOP, VA_TEXT_BOTTOM }; enum { BS_NONE, BS_SOLID }; enum { V_VISIBLE, V_HIDDEN, V_COLLAPSE }; |