[Webkit-unassigned] [Bug 17151] New: REGRESSION : "subresources" array has a strange behavior

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Feb 2 06:51:17 PST 2008


http://bugs.webkit.org/show_bug.cgi?id=17151

           Summary: REGRESSION : "subresources" array has a strange behavior
           Product: WebKit
           Version: 525+ (Nightly build)
          Platform: Macintosh PowerPC
        OS/Version: Mac OS X 10.5
            Status: UNCONFIRMED
          Severity: Minor
          Priority: P1
         Component: WebKit API
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: ynn at free.fr


I had a WebKit program, wich implement WebResourceLoad Delegate like this :

- (id)webView:(WebView *)sender identifierForInitialRequest:(NSURLRequest
*)request fromDataSource:(WebDataSource *)dataSource
{
        return [request URL];
}

-(void)webView:(WebView *)sender resource:(id)identifier
didFinishLoadingFromDataSource:(WebDataSource *)dataSource
{ 
        WebResource *r = [dataSource subresourceForURL:identifier];
        [self doStuff:[r data]]; 
}


Prior to 10.4.11 it worked well.
Now (Safari 3 ?), resources aren't all in [dataSource subresources]. It seems
that  resources which doesn't need to be cached are missing.
So it is impossible to get all the downloaded content from a webView.


(Sorry for my bad english).


-- 
Configure bugmail: http://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