summaryrefslogtreecommitdiff
path: root/embed/ephy-embed-event.c
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-03-16 01:16:30 +0100
committerXan Lopez <xan@igalia.com>2012-03-16 01:18:08 +0100
commit9d8fd9a553a114ef9b5d8ba559bde0899539a44b (patch)
treed6a3b780c5567348cee169884f3ef715de0eca8b /embed/ephy-embed-event.c
parent76ba84b394edbaf7e0b4ff2053612fcb13c909da (diff)
downloadepiphany-9d8fd9a553a114ef9b5d8ba559bde0899539a44b.tar.gz
Fix bookmarklet's titles when they are created
This was pretty much broken since the Gecko days. On top of that, catch the case where the bookmarklet title is in the child node of the anchor element, which we never got right before. https://bugzilla.gnome.org/show_bug.cgi?id=672194
Diffstat (limited to 'embed/ephy-embed-event.c')
-rw-r--r--embed/ephy-embed-event.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/embed/ephy-embed-event.c b/embed/ephy-embed-event.c
index bd3ca818d..f21b7a2f2 100644
--- a/embed/ephy-embed-event.c
+++ b/embed/ephy-embed-event.c
@@ -181,3 +181,10 @@ ephy_embed_event_has_property (EphyEmbedEvent *event,
}
+WebKitHitTestResult *
+ephy_embed_event_get_hit_test_result (EphyEmbedEvent *event)
+{
+ g_return_val_if_fail (EPHY_IS_EMBED_EVENT (event), NULL);
+
+ return event->priv->hit_test_result;
+}