EWebView: Remove a backward-compatibility hack.

We require WebKitGTK+ >= 1.10 so we can drop a hack to support < 1.9.6.
This commit is contained in:
Matthew Barnes
2013-04-07 11:14:19 -04:00
parent b83a9cd5bb
commit fa875d8565

View File

@ -468,15 +468,7 @@ web_view_update_document_highlights (EWebView *web_view)
span = webkit_dom_document_create_element (document, "span", NULL);
/* See https://bugzilla.gnome.org/show_bug.cgi?id=681400
* FIXME: This can be removed once we require WebKitGtk 1.10+ */
#if WEBKIT_CHECK_VERSION (1, 9, 6)
webkit_dom_element_set_class_name (
span, "__evo-highlight");
#else
webkit_dom_html_element_set_class_name (
WEBKIT_DOM_HTML_ELEMENT (span), "__evo-highlight");
#endif
webkit_dom_element_set_class_name (span, "__evo-highlight");
webkit_dom_html_element_set_inner_text (
WEBKIT_DOM_HTML_ELEMENT (span), text, NULL);