diff options
Diffstat (limited to 'src/html.cc')
-rw-r--r-- | src/html.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/html.cc b/src/html.cc index 93cb769b..dc9fc617 100644 --- a/src/html.cc +++ b/src/html.cc @@ -1667,7 +1667,7 @@ static void Html_tag_close_style(DilloHtml *html, int TagIdx) { if (prefs.parse_embedded_css) html->styleEngine->parse(html->Stash->str, html->Stash->len, - 0, CSS_ORIGIN_AUTHOR); + CSS_ORIGIN_AUTHOR); } /* @@ -2820,7 +2820,7 @@ static void Html_load_stylesheet(DilloHtml *html, DilloUrl *url) if (a_Capi_get_buf(url, &data, &len)) { _MSG("cached URL=%s len=%d", URL_STR(url), len); if (a_Capi_get_flags(url) & CAPI_Completed) - html->styleEngine->parse(data, len, 0, CSS_ORIGIN_AUTHOR); + html->styleEngine->parse(data, len, CSS_ORIGIN_AUTHOR); a_Capi_unref_buf(url); } else { /* Fill a Web structure for the cache query */ |