summaryrefslogtreecommitdiff
path: root/render/html_css.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-03-18 14:57:29 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2013-03-18 14:57:29 +0000
commit07bdb324c14884fecbdc707934f3fa899cc0e8f3 (patch)
tree7394d8f4da0e86d8aa151873cccc71c8b63ff9dd /render/html_css.c
parent5930e4bcc46f8e49c34e5630cf875f2b055502ff (diff)
downloadnetsurf-07bdb324c14884fecbdc707934f3fa899cc0e8f3.tar.gz
netsurf-07bdb324c14884fecbdc707934f3fa899cc0e8f3.tar.bz2
Remove extra logging.
Diffstat (limited to 'render/html_css.c')
-rw-r--r--render/html_css.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/render/html_css.c b/render/html_css.c
index 6242f9da7..7c0962070 100644
--- a/render/html_css.c
+++ b/render/html_css.c
@@ -306,8 +306,6 @@ static void html_css_process_modified_styles(void *pw)
for (i = 0, s = c->stylesheets; i != c->stylesheet_count; i++, s++) {
if (c->stylesheets[i].modified) {
- LOG(("Processing modified inline stylesheet for %p",
- c->stylesheets[i].node));
all_done &= html_css_process_modified_style(c, s);
}
}
@@ -329,7 +327,6 @@ bool html_css_update_style(html_content *c, dom_node *style)
break;
}
if (i == c->stylesheet_count) {
- LOG(("Creating inline stylesheet for %p", style));
s = html_create_style_element(c, style);
}
if (s == NULL) {