[Webkit-unassigned] [Bug 26421] resources not fetched when application cache is on

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jun 15 15:35:57 PDT 2009


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





------- Comment #1 from yong.li at torchmobile.com  2009-06-15 15:35 PDT -------
Possible solution?

change the following code:

    if (!resource && (cache->urlMatchesFallbackNamespace(request.url()) ||
cache->isURLInOnlineWhitelist(request.url())))
        return false;

into:

    if (!resource || cache->urlMatchesFallbackNamespace(request.url()) ||
cache->isURLInOnlineWhitelist(request.url()))
        return false;


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



More information about the webkit-unassigned mailing list