Changeset 202967 in webkit
- Timestamp:
- Jul 7, 2016, 11:28:58 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/DumpRenderTree/win/DumpRenderTree.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r202962 r202967 1 2016-07-07 Per Arne Vollan <pvollan@apple.com> 2 3 [Win] The test http/tests/security/contentSecurityPolicy/upgrade-insecure-requests/basic-upgrade.https.html is failing. 4 https://bugs.webkit.org/show_bug.cgi?id=159510 5 6 Reviewed by Brent Fulgham. 7 8 On Windows, validate certificate chain even when any https certificate is allowed. 9 10 * platform/network/cf/ResourceHandleCFNet.cpp: 11 (WebCore::ResourceHandle::createCFURLConnection): 12 1 13 2016-07-07 Frederic Wang <fwang@igalia.com> 2 14 -
trunk/Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp
r201708 r202967 174 174 CFDictionaryAddValue(sslProps.get(), kCFStreamSSLAllowsExpiredRoots, kCFBooleanTrue); 175 175 CFDictionaryAddValue(sslProps.get(), kCFStreamSSLAllowsExpiredCertificates, kCFBooleanTrue); 176 #if !PLATFORM(WIN) // Remove platform #ifdef when <rdar://problem/26768077> is fixed. 176 177 CFDictionaryAddValue(sslProps.get(), kCFStreamSSLValidatesCertificateChain, kCFBooleanFalse); 178 #endif 177 179 } 178 180 -
trunk/Tools/ChangeLog
r202957 r202967 1 2016-07-07 Per Arne Vollan <pvollan@apple.com> 2 3 [Win] The test http/tests/security/contentSecurityPolicy/upgrade-insecure-requests/basic-upgrade.https.html is failing. 4 https://bugs.webkit.org/show_bug.cgi?id=159510 5 6 Reviewed by Brent Fulgham. 7 8 Allow any https certificate when running tests. 9 10 * DumpRenderTree/win/DumpRenderTree.cpp: 11 (runTest): 12 1 13 2016-07-07 Beth Dakin <bdakin@apple.com> 2 14 -
trunk/Tools/DumpRenderTree/win/DumpRenderTree.cpp
r202728 r202967 1139 1139 request->initWithURL(urlBStr, WebURLRequestUseProtocolCachePolicy, 60); 1140 1140 request->setHTTPMethod(methodBStr); 1141 request->setAllowsAnyHTTPSCertificate(); 1141 1142 frame->loadRequest(request.get()); 1142 1143
Note:
See TracChangeset
for help on using the changeset viewer.