Changeset 242376 in webkit
- Timestamp:
- Mar 4, 2019, 12:39:33 PM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/WebPage/WebPage.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r242375 r242376 1 2019-03-04 Brady Eidson <beidson@apple.com> 2 3 Correctly handle sandbox extensions when the same WKWebView loads multiple file:// URLs. 4 <rdar://problem/47820581> and https://bugs.webkit.org/show_bug.cgi?id=195291 5 6 Reviewed by Andy Estes. 7 8 * WebProcess/WebPage/WebPage.cpp: 9 (WebKit::shouldReuseCommittedSandboxExtension): Only retain the previous sandbox extension if the file URL 10 we're currently loading is functionally equivalent to the previous one. 11 1 12 2019-03-04 Chris Dumez <cdumez@apple.com> 2 13 -
trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp
r242375 r242376 4413 4413 return false; 4414 4414 4415 if (documentLoader->url().isLocalFile() && provisionalDocumentLoader->url().isLocalFile() )4415 if (documentLoader->url().isLocalFile() && provisionalDocumentLoader->url().isLocalFile() && equalIgnoringQueryAndFragment(documentLoader->url(), provisionalDocumentLoader->url())) 4416 4416 return true; 4417 4417
Note:
See TracChangeset
for help on using the changeset viewer.