summaryrefslogtreecommitdiff
path: root/source/html/css-apply.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2014-10-23 16:13:42 +0200
committerTor Andersson <tor.andersson@artifex.com>2014-12-03 12:25:51 +0100
commit7159498b095238ca8c8c87cc99d83c46fc5cd19b (patch)
tree389dc2016150d5e96d2231f19787b1ca8f9b9964 /source/html/css-apply.c
parent5dc64869a5e3bdf851d82ff445b32b609084931b (diff)
downloadmupdf-7159498b095238ca8c8c87cc99d83c46fc5cd19b.tar.xz
html: Apply margins.
Diffstat (limited to 'source/html/css-apply.c')
-rw-r--r--source/html/css-apply.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/source/html/css-apply.c b/source/html/css-apply.c
index 9a73ee2a..a99eed2b 100644
--- a/source/html/css-apply.c
+++ b/source/html/css-apply.c
@@ -706,15 +706,15 @@ get_style_property_display(struct style *node)
if (value)
{
if (!strcmp(value->data, "none"))
- return NONE;
+ return DIS_NONE;
if (!strcmp(value->data, "inline"))
- return INLINE;
+ return DIS_INLINE;
if (!strcmp(value->data, "block"))
- return BLOCK;
+ return DIS_BLOCK;
if (!strcmp(value->data, "list-item"))
- return LIST_ITEM;
+ return DIS_LIST_ITEM;
}
- return INLINE;
+ return DIS_INLINE;
}
static float
@@ -768,34 +768,34 @@ compute_style(struct computed_style *style, struct style *node, float width)
memset(style, 0, sizeof *style);
- style->position = STATIC;
- style->text_align = LEFT;
+ style->position = POS_STATIC;
+ style->text_align = TA_LEFT;
style->font_size = 12;
value = get_style_property(node, "position");
if (value)
{
if (!strcmp(value->data, "static"))
- style->position = STATIC;
+ style->position = POS_STATIC;
if (!strcmp(value->data, "relative"))
- style->position = RELATIVE;
+ style->position = POS_RELATIVE;
if (!strcmp(value->data, "absolute"))
- style->position = ABSOLUTE;
+ style->position = POS_ABSOLUTE;
if (!strcmp(value->data, "fixed"))
- style->position = FIXED;
+ style->position = POS_FIXED;
}
value = get_style_property(node, "text-align");
if (value)
{
if (!strcmp(value->data, "left"))
- style->text_align = LEFT;
+ style->text_align = TA_LEFT;
if (!strcmp(value->data, "right"))
- style->text_align = RIGHT;
+ style->text_align = TA_RIGHT;
if (!strcmp(value->data, "center"))
- style->text_align = CENTER;
+ style->text_align = TA_CENTER;
if (!strcmp(value->data, "justify"))
- style->text_align = JUSTIFY;
+ style->text_align = TA_JUSTIFY;
}
value = get_style_property(node, "vertical-align");