From 405fa12f8d5c63553276b3319625fd139fb65665 Mon Sep 17 00:00:00 2001 From: John-Mark Bell Date: Tue, 26 Feb 2013 09:14:32 +0000 Subject: Fix handling of inline stylesheets with @import --- render/html.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'render/html.h') diff --git a/render/html.h b/render/html.h index 97899f136..de9e29430 100644 --- a/render/html.h +++ b/render/html.h @@ -61,7 +61,10 @@ struct html_stylesheet { struct dom_node *node; /**< dom node associated with sheet */ union { struct hlcache_handle *external; - struct content_css_data *internal; + struct { + struct content_css_data *data; + bool done; + } internal; } data; /**< Sheet data */ }; -- cgit v1.2.3