Changeset 280706 in webkit
- Timestamp:
- Aug 5, 2021, 4:47:09 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
Source/WebKit/ChangeLog (modified) (1 diff)
-
Source/WebKit/UIProcess/WebProcessProxy.cpp (modified) (2 diffs)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/TestWebKitAPI/Tests/mac/load-web-archive-1.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r280702 r280706 1 2021-08-05 Kate Cheney <katherine_cheney@apple.com> 2 3 LoadWebArchive.FailNavigation1 test is a false positive 4 https://bugs.webkit.org/show_bug.cgi?id=228848 5 <rdar://problem/81587448> 6 7 Reviewed by Brent Fulgham. 8 9 Drive by logging fix. 10 11 * UIProcess/WebProcessProxy.cpp: 12 (WebKit::WebProcessProxy::fetchWebsiteData): 13 (WebKit::WebProcessProxy::deleteWebsiteData): 14 1 15 2021-08-05 Eric Carlson <eric.carlson@apple.com> 2 16 -
trunk/Source/WebKit/UIProcess/WebProcessProxy.cpp
r280451 r280706 1246 1246 #endif 1247 1247 completionHandler(WTFMove(reply)); 1248 WEBPROCESSPROXY_RELEASE_LOG(ProcessSuspension, "fetchWebsiteData: Teleasing a background assertion because the Web process is done fetching Website data");1248 WEBPROCESSPROXY_RELEASE_LOG(ProcessSuspension, "fetchWebsiteData: Releasing a background assertion because the Web process is done fetching Website data"); 1249 1249 }); 1250 1250 } … … 1262 1262 #endif 1263 1263 completionHandler(); 1264 WEBPROCESSPROXY_RELEASE_LOG(ProcessSuspension, "deleteWebsiteData: Teleasing a background assertion because the Web process is done deleting Website data");1264 WEBPROCESSPROXY_RELEASE_LOG(ProcessSuspension, "deleteWebsiteData: Releasing a background assertion because the Web process is done deleting Website data"); 1265 1265 }); 1266 1266 } -
trunk/Tools/ChangeLog
r280682 r280706 1 2021-08-05 Kate Cheney <katherine_cheney@apple.com> 2 3 LoadWebArchive.FailNavigation1 test is a false positive 4 https://bugs.webkit.org/show_bug.cgi?id=228848 5 <rdar://problem/81587448> 6 7 Reviewed by Brent Fulgham. 8 9 Update LoadWebArchive.FailNavigation1 to test the case of a webarchive 10 being loaded with a host for better test coverage. 11 12 * TestWebKitAPI/Tests/mac/load-web-archive-1.html: 13 1 14 2021-08-05 Zan Dobersek <zdobersek@igalia.com> 2 15 -
trunk/Tools/TestWebKitAPI/Tests/mac/load-web-archive-1.html
r241480 r280706 2 2 <html> 3 3 <script> 4 document.location.href = 'helloworld.webarchive'; 4 var url = new URL(location.href); 5 var path = url.pathname.replace('load-web-archive-1.html', 'helloworld.webarchive'); 6 url.pathname = path; 7 url.host = 'test'; 8 9 document.location.href = url.href; 5 10 </script> 6 11 </html>
Note:
See TracChangeset
for help on using the changeset viewer.