GNOME Bugzilla – Bug 678599
Port link message to WebKit2
Last modified: 2012-06-25 11:18:20 UTC
Created attachment 216998 [details] [review] status message should be const Use mouse-target-changed signal of WebKit2 to implement hovering-ever-link
Created attachment 216999 [details] [review] Fix memory leaks
Created attachment 217000 [details] [review] Patch
Review of attachment 216998 [details] [review]: OK.
Review of attachment 216999 [details] [review]: OK.
Review of attachment 217000 [details] [review]: I assume this is basically untested since the hovering message is just not showing up in WK2 right? ::: embed/ephy-web-view.c @@ +1217,3 @@ + ephy_web_view_set_link_message (web_view, + webkit_hit_test_result_get_link_uri (hit_test_result)); +} Nitpick, but I think I'd prefer: const char *message = NULL; if (is_link) message = get_link_uri (); ephy_web_view_set_link_message (view, message);
(In reply to comment #5) > Review of attachment 217000 [details] [review]: > > I assume this is basically untested since the hovering message is just not > showing up in WK2 right? The hovered link is shown, as well as the selected item in the bf list. > ::: embed/ephy-web-view.c > @@ +1217,3 @@ > + ephy_web_view_set_link_message (web_view, > + webkit_hit_test_result_get_link_uri > (hit_test_result)); > +} > > Nitpick, but I think I'd prefer: > > const char *message = NULL; > > if (is_link) > message = get_link_uri (); > > ephy_web_view_set_link_message (view, message); Ok.
Created attachment 217185 [details] [review] Updated patch.
Review of attachment 217185 [details] [review]: OK.