[Webkit-unassigned] [Bug 32307] SVG embedded via object tag cannot be loaded from application cache

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Dec 10 21:22:15 PST 2009


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





--- Comment #2 from Alexey Proskuryakov <ap at webkit.org>  2009-12-10 21:22:15 PST ---
It's is broken due to this code in
MainResourceLoader::continueAfterContentPolicy():

        if (status < 200 || status >= 300) {
            bool hostedByObject = frameLoader()->isHostedByObjectElement();

            frameLoader()->handleFallbackContent();
            // object elements are no longer rendered after we fallback, so
don't
            // keep trying to process data from their load

            if (hostedByObject)
                cancel();
        }

A response generated in MainResourceLoader::handleDataLoadNow() from substitute
data has status of 0, so the substitute data is not used for OBJECT.

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