From 86ad729085237a39f74741c5b764090f4e1bb31d Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 7 Feb 2016 20:10:31 +0000 Subject: Fix body text hint. --- css/hints.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'css') diff --git a/css/hints.c b/css/hints.c index c4d1c2910..80c563882 100644 --- a/css/hints.c +++ b/css/hints.c @@ -1337,6 +1337,28 @@ static void css_hint_anchor_color( } } +static void css_hint_body_color( + nscss_select_ctx *ctx, + dom_node *node) +{ + struct css_hint *hint = &hint_ctx.hints[hint_ctx.len]; + dom_exception err; + dom_string *color; + + err = dom_element_get_attribute(node, corestring_dom_text, &color); + + if (err == DOM_NO_ERR && color != NULL) { + if (nscss_parse_colour( + (const char *)dom_string_data(color), + &hint->data.color)) { + hint->prop = CSS_PROP_COLOR; + hint->status = CSS_COLOR_COLOR; + hint = css_hint_advance(hint); + } + dom_string_unref(color); + } +} + static void css_hint_color( nscss_select_ctx *ctx, dom_node *node) @@ -1560,6 +1582,9 @@ css_error node_presentational_hint(void *pw, void *node, case DOM_HTML_ELEMENT_TYPE_FONT: css_hint_font_size(pw, node); break; + case DOM_HTML_ELEMENT_TYPE_BODY: + css_hint_body_color(pw, node); + break; default: break; } -- cgit v1.2.3