Changeset 218416 in webkit
- Timestamp:
- Jun 16, 2017, 2:43:00 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r218413 r218416 1 2017-06-16 Alex Christensen <achristensen@webkit.org> 2 3 REGRESSION (r213126): Sync XHR needs partition for cache and credentials 4 https://bugs.webkit.org/show_bug.cgi?id=173496 5 <rdar://problem/31943596> 6 7 Reviewed by Darin Adler. 8 9 * http/tests/security/sync-xhr-partition-expected.txt: Added. 10 * http/tests/security/sync-xhr-partition.html: Added. 11 1 12 2017-06-16 Matt Lewis <jlewis3@apple.com> 2 13 -
trunk/Source/WebCore/ChangeLog
r218411 r218416 1 2017-06-16 Alex Christensen <achristensen@webkit.org> 2 3 REGRESSION (r213126): Sync XHR needs partition for cache and credentials 4 https://bugs.webkit.org/show_bug.cgi?id=173496 5 <rdar://problem/31943596> 6 7 Reviewed by Darin Adler. 8 9 Test: http/tests/security/sync-xhr-partition.html 10 11 * xml/XMLHttpRequest.cpp: 12 (WebCore::XMLHttpRequest::createRequest): 13 1 14 2017-06-16 Commit Queue <commit-queue@webkit.org> 2 15 -
trunk/Source/WebCore/xml/XMLHttpRequest.cpp
r215686 r218416 761 761 setPendingActivity(this); 762 762 } else { 763 request.setDomainForCachePartition(scriptExecutionContext()->topOrigin().domainForCachePartition()); 763 764 InspectorInstrumentation::willLoadXHRSynchronously(scriptExecutionContext()); 764 765 ThreadableLoader::loadResourceSynchronously(*scriptExecutionContext(), WTFMove(request), *this, options);
Note:
See TracChangeset
for help on using the changeset viewer.