From 3df3dec17b3bf4fbfd2cb0d92d838df5be6231d3 Mon Sep 17 00:00:00 2001 From: justing Date: Tue, 3 Oct 2006 21:53:37 +0000 Subject: [PATCH] Reviewed by geoff REGRESSION: Multipart/x-mixed-replace sub-resources fail to load * Loader/WebSubresourceLoader.m: (+[WebSubresourceLoader startLoadingResource:withRequest:customHeaders:referrer:forFrameLoader:]): Enable multipart/x-mixed-replace support on the request. This line was accidently removed during some loader refactoring. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@16742 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- WebKit/ChangeLog | 11 +++++++++++ WebKit/Loader/WebSubresourceLoader.m | 3 +++ 2 files changed, 14 insertions(+) diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog index 3d58d4176c81..f947799ca9a4 100644 --- a/WebKit/ChangeLog +++ b/WebKit/ChangeLog @@ -1,3 +1,14 @@ +2006-10-03 Justin Garcia + + Reviewed by geoff + + REGRESSION: Multipart/x-mixed-replace sub-resources fail to load + + * Loader/WebSubresourceLoader.m: + (+[WebSubresourceLoader startLoadingResource:withRequest:customHeaders:referrer:forFrameLoader:]): + Enable multipart/x-mixed-replace support on the request. This line was accidently removed during + some loader refactoring. + 2006-10-02 Adam Roben Reviewed by Maciej. diff --git a/WebKit/Loader/WebSubresourceLoader.m b/WebKit/Loader/WebSubresourceLoader.m index 80b2044999cf..38140748d286 100644 --- a/WebKit/Loader/WebSubresourceLoader.m +++ b/WebKit/Loader/WebSubresourceLoader.m @@ -33,6 +33,7 @@ #import #import #import +#import @implementation WebSubresourceLoader @@ -98,6 +99,8 @@ static void setHTTPReferrer(NSMutableURLRequest *request, NSString *theReferrer) { if ([fl state] == WebFrameStateProvisional) return nil; + + WKSupportsMultipartXMixedReplace(newRequest); WebSubresourceLoader *loader = [[[self alloc] initWithLoader:rLoader frameLoader:fl] autorelease]; -- 2.36.0