summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2014-11-18 13:56:58 +0100
committerTor Andersson <tor.andersson@artifex.com>2014-12-03 12:25:52 +0100
commit3ba9c348795b3923ff65e917c23b454470698489 (patch)
treee01db0e03d60c2b010164be64928f2ca47b3badf /include
parentbb875f77f23ac4c51a072f4fc6692ce2dc352997 (diff)
downloadmupdf-3ba9c348795b3923ff65e917c23b454470698489.tar.xz
html: Borders.
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/html.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mupdf/html.h b/include/mupdf/html.h
index 57249c03..8da4534c 100644
--- a/include/mupdf/html.h
+++ b/include/mupdf/html.h
@@ -122,12 +122,15 @@ struct computed_style
struct number font_size;
struct number margin[4];
struct number padding[4];
+ struct number border_width[4];
struct number text_indent;
int white_space;
int text_align;
int vertical_align;
+ int border_style;
struct number line_height;
struct color background_color;
+ struct color border_color;
struct color color;
fz_font *font;
};
@@ -155,6 +158,7 @@ struct box
float x, y, w, h; /* content */
float padding[4];
float margin[4];
+ float border[4];
struct box *up, *down, *last, *next;
fz_xml *node;
struct flow *flow_head, **flow_tail;