[Webkit-unassigned] [Bug 84435] [EFL][DRT] EFL's DRT needs to support LayoutTestController.dumpIconChanges()

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Apr 26 22:57:11 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=84435





--- Comment #10 from Christophe Dumez <christophe.dumez at intel.com>  2012-04-26 22:57:11 PST ---
If you check GTK port for example:

void FrameLoaderClient::dispatchDidReceiveIcon() {
  ASSERT(m_frame == webkit_web_view_get_main_frame(webView));
  ...
}

But the EFL port is doing:

void FrameLoaderClientEfl::dispatchDidChangeIcons(WebCore::IconType iconType)
{
    // report received favicon only for main frame.
    if (ewk_view_frame_main_get(m_view) != m_frame)
        return;
    ...
}

So I believe that even if we removed the main_frame check in the EFL port, we would still send the "icon,received" signal for the main frame only.

Now, I don't know if dispatchDidChangeIcons() is called for the main frame only or not but does it really make sense to emit the "icon,changed" signal potentially for all frame when we know for sure that we send the "icon,received" signal only for the main frame?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list