[Webkit-unassigned] [Bug 19360] Frags on current page don't generate "navigation-requested" events

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jul 22 08:39:15 PDT 2009


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





--- Comment #2 from Frederic Peters <fpeters at gnome.org>  2009-07-22 08:39:14 PDT ---
I traced it back to FrameLoader::checkNavigationPolicy, which exits early at

    // We are always willing to show alternate content for unreachable URLs;
    // treat it like a reload so it maintains the right state for b/f list.
    if (loader->substituteData().isValid() &&
!loader->substituteData().failingURL().isEmpty()) {
        if (isBackForwardLoadType(m_policyLoadType))
            m_policyLoadType = FrameLoadTypeReload;
        function(argument, request, 0, true);
        return;
    }

and therefore skips the m_client->dispatchDecidePolicyForNavigationAction()
which would emit the signal.

>From there, however, I do not know where to go :/

-- 
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