[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

darin at apple.com darin at apple.com
Wed Dec 22 15:56:08 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 02b96163b4cdfeb08ea827f4f9ae47ec9bd0c4ec
Author: darin at apple.com <darin at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 16 22:51:22 2010 +0000

    https://bugs.webkit.org/show_bug.cgi?id=49611
    REGRESSION (r72115): 5 layout tests are broken
    
    * loader/FrameLoader.cpp:
    (WebCore::FrameLoader::loadFrameRequest): Roll change from
    https://bugs.webkit.org/show_bug.cgi?id=48603 out. I'll roll
    it back in after fixing the failing tests.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@72137 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 69e45ee..7e83558 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-11-16  Darin Adler  <darin at apple.com>
+
+        https://bugs.webkit.org/show_bug.cgi?id=49611
+        REGRESSION (r72115): 5 layout tests are broken
+
+        * loader/FrameLoader.cpp:
+        (WebCore::FrameLoader::loadFrameRequest): Roll change from
+        https://bugs.webkit.org/show_bug.cgi?id=48603 out. I'll roll
+        it back in after fixing the failing tests.
+
 2010-11-16  Dan Bernstein  <mitz at apple.com>
 
         Reviewed by Simon Fraser.
diff --git a/WebCore/loader/FrameLoader.cpp b/WebCore/loader/FrameLoader.cpp
index f1f70d1..58113c2 100644
--- a/WebCore/loader/FrameLoader.cpp
+++ b/WebCore/loader/FrameLoader.cpp
@@ -1256,7 +1256,7 @@ void FrameLoader::loadFrameRequest(const FrameLoadRequest& request, bool lockHis
     ASSERT(frame()->document());
     // FIXME: Should we move the isFeedWithNestedProtocolInHTTPFamily logic inside SecurityOrigin::canDisplay?
     if (!isFeedWithNestedProtocolInHTTPFamily(url)) {
-        if (!(frame()->document()->securityOrigin()->canDisplay(url) && SecurityOrigin::deprecatedCanDisplay(referrer, url))) {
+        if (!frame()->document()->securityOrigin()->canDisplay(url) && !SecurityOrigin::deprecatedCanDisplay(referrer, url)) {
             reportLocalLoadFailed(m_frame, url.string());
             return;
         }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list