# HG changeset patch # User Elliott Sales de Andrade # Date 1338435769 0 # Node ID 5617be6a8413d884e8c8cdb4d2dc4201c9dc7ac6 # Parent b8cbd52e26b1a401c434bdcee066f351f464ae01 Use insertAdjacentHtml instead of document.write. This seems a lot better since it correctly applies styles and adds elements to the DOM, which then show up in the inspector. diff -r b8cbd52e26b1 -r 5617be6a8413 pidgin/gtkwebview.c --- a/pidgin/gtkwebview.c Thu May 31 00:36:55 2012 +0000 +++ b/pidgin/gtkwebview.c Thu May 31 03:42:49 2012 +0000 @@ -551,12 +551,12 @@ gtk_webview_append_html(GtkWebView *webview, const char *html) { GtkWebViewPriv *priv = GTK_WEBVIEW_GET_PRIVATE(webview); - char *escaped = gtk_webview_quote_js_string(html); - char *script = g_strdup_printf("document.write(%s)", escaped); - webkit_web_view_execute_script(WEBKIT_WEB_VIEW(webview), script); + WebKitDOMDocument *doc; + WebKitDOMHTMLElement *body; + doc = webkit_web_view_get_dom_document(WEBKIT_WEB_VIEW(webview)); + body = webkit_dom_document_get_body(doc); + webkit_dom_html_element_insert_adjacent_html(body, "beforeend", html, NULL); priv->empty = FALSE; - g_free(script); - g_free(escaped); } void