Title: [228443] branches/safari-605-branch/Source/WebKit
Revision
228443
Author
dba...@webkit.org
Date
2018-02-13 17:02:03 -0800 (Tue, 13 Feb 2018)

Log Message

[safari-605-branch] Fix OS X El Capitan layout test failures following r228386
(https://bugs.webkit.org/show_bug.cgi?id=182358)

Patch the safari-605 branch-specific NetworkLoad::didReceiveAuthenticationChallenge
function to notify the Web Process when the authentication challenge is blocked.

* NetworkProcess/NetworkLoad.cpp:
(WebKit::NetworkLoad::didReceiveAuthenticationChallenge):

Modified Paths

Diff

Modified: branches/safari-605-branch/Source/WebKit/ChangeLog (228442 => 228443)


--- branches/safari-605-branch/Source/WebKit/ChangeLog	2018-02-14 00:08:39 UTC (rev 228442)
+++ branches/safari-605-branch/Source/WebKit/ChangeLog	2018-02-14 01:02:03 UTC (rev 228443)
@@ -1,3 +1,14 @@
+2018-02-13  Daniel Bates  <daba...@apple.com>
+
+        [safari-605-branch] Fix OS X El Capitan layout test failures following r228386
+        (https://bugs.webkit.org/show_bug.cgi?id=182358)
+
+        Patch the safari-605 branch-specific NetworkLoad::didReceiveAuthenticationChallenge
+        function to notify the Web Process when the authentication challenge is blocked.
+
+        * NetworkProcess/NetworkLoad.cpp:
+        (WebKit::NetworkLoad::didReceiveAuthenticationChallenge):
+
 2018-02-12  Jason Marcell  <jmarc...@apple.com>
 
         Cherry-pick r228231. rdar://problem/37408885

Modified: branches/safari-605-branch/Source/WebKit/NetworkProcess/NetworkLoad.cpp (228442 => 228443)


--- branches/safari-605-branch/Source/WebKit/NetworkProcess/NetworkLoad.cpp	2018-02-14 00:08:39 UTC (rev 228442)
+++ branches/safari-605-branch/Source/WebKit/NetworkProcess/NetworkLoad.cpp	2018-02-14 01:02:03 UTC (rev 228443)
@@ -568,6 +568,7 @@
     ASSERT_UNUSED(handle, handle == m_handle);
 
     if (!isAllowedToAskUserForCredentials()) {
+        m_client.get().didBlockAuthenticationChallenge();
         challenge.authenticationClient()->receivedRequestToContinueWithoutCredential(challenge);
         return;
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to