Changeset 211125 in webkit
- Timestamp:
- Jan 24, 2017, 5:43:21 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 6 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/ios-simulator/fast/xmlhttprequest (added)
-
LayoutTests/platform/ios-simulator/fast/xmlhttprequest/xmlhttprequest-nonexistent-file-expected.txt (added)
-
LayoutTests/platform/ios-simulator/storage (added)
-
LayoutTests/platform/ios-simulator/storage/domstorage (added)
-
LayoutTests/platform/ios-simulator/storage/domstorage/sessionstorage (added)
-
LayoutTests/platform/ios-simulator/storage/domstorage/sessionstorage/blocked-file-access-expected.txt (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/page/SecurityOrigin.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r211119 r211125 1 2017-01-24 Brent Fulgham <bfulgham@apple.com> 2 3 Bug 167392: REGRESSION(r210531): Relax same-volume display requirement for iOS 4 https://bugs.webkit.org/show_bug.cgi?id=167392 5 <rdar://problem/30074665> 6 7 Reviewed by Brady Eidson. 8 9 Rebaseline two tests for ios-simulator, now that they exclude the cross-volume file check.. 10 11 * platform/ios-simulator/fast/xmlhttprequest: Added. 12 * platform/ios-simulator/fast/xmlhttprequest/xmlhttprequest-nonexistent-file-expected.txt: Added. 13 * platform/ios-simulator/storage: Added. 14 * platform/ios-simulator/storage/domstorage: Added. 15 * platform/ios-simulator/storage/domstorage/sessionstorage: Added. 16 * platform/ios-simulator/storage/domstorage/sessionstorage/blocked-file-access-expected.txt: Added. 17 1 18 2017-01-24 Ryan Haddad <ryanhaddad@apple.com> 2 19 -
trunk/Source/WebCore/ChangeLog
r211120 r211125 1 2017-01-24 Brent Fulgham <bfulgham@apple.com> 2 3 Bug 167392: REGRESSION(r210531): Relax same-volume display requirement for iOS 4 https://bugs.webkit.org/show_bug.cgi?id=167392 5 <rdar://problem/30074665> 6 7 Reviewed by Brady Eidson. 8 9 * page/SecurityOrigin.cpp: 10 (WebCore::SecurityOrigin::canDisplay): Exclude the new check when building on iOS. 11 1 12 2017-01-24 Andreas Kling <akling@apple.com> 2 13 -
trunk/Source/WebCore/page/SecurityOrigin.cpp
r210888 r211125 305 305 return true; 306 306 307 #if !PLATFORM(IOS) 307 308 if (m_protocol == "file" && url.isLocalFile() && !filesHaveSameVolume(m_filePath, url.path())) 308 309 return false; 310 #endif 309 311 310 312 if (isFeedWithNestedProtocolInHTTPFamily(url))
Note:
See TracChangeset
for help on using the changeset viewer.