Title: [244128] branches/safari-607-branch/Tools
- Revision
- 244128
- Author
- [email protected]
- Date
- 2019-04-10 10:11:18 -0700 (Wed, 10 Apr 2019)
Log Message
Cherry-pick r243858. rdar://problem/49725697
The page's focusedFrame / frameSetLargestFrame do not get cleared on process swap or crash
https://bugs.webkit.org/show_bug.cgi?id=196588
<rdar://problem/49365787>
Unreviewed build fix for Windows port.
error C3861: 'kill': identifier not found
* TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp:
(TestWebKitAPI::TEST): Replaced kill with WKPageTerminate.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@243858 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Modified Paths
Diff
Modified: branches/safari-607-branch/Tools/ChangeLog (244127 => 244128)
--- branches/safari-607-branch/Tools/ChangeLog 2019-04-10 17:11:16 UTC (rev 244127)
+++ branches/safari-607-branch/Tools/ChangeLog 2019-04-10 17:11:18 UTC (rev 244128)
@@ -1,5 +1,35 @@
2019-04-09 Alan Coon <[email protected]>
+ Cherry-pick r243858. rdar://problem/49725697
+
+ The page's focusedFrame / frameSetLargestFrame do not get cleared on process swap or crash
+ https://bugs.webkit.org/show_bug.cgi?id=196588
+ <rdar://problem/49365787>
+
+ Unreviewed build fix for Windows port.
+
+ error C3861: 'kill': identifier not found
+
+ * TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp:
+ (TestWebKitAPI::TEST): Replaced kill with WKPageTerminate.
+
+ git-svn-id: https://svn.webkit.org/repository/webkit/trunk@243858 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+ 2019-04-03 Fujii Hironori <[email protected]>
+
+ The page's focusedFrame / frameSetLargestFrame do not get cleared on process swap or crash
+ https://bugs.webkit.org/show_bug.cgi?id=196588
+ <rdar://problem/49365787>
+
+ Unreviewed build fix for Windows port.
+
+ error C3861: 'kill': identifier not found
+
+ * TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp:
+ (TestWebKitAPI::TEST): Replaced kill with WKPageTerminate.
+
+2019-04-09 Alan Coon <[email protected]>
+
Cherry-pick r243849. rdar://problem/49725697
Unreviewed, fix typo in the name of API test added in r243848.
Modified: branches/safari-607-branch/Tools/TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp (244127 => 244128)
--- branches/safari-607-branch/Tools/TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp 2019-04-10 17:11:16 UTC (rev 244127)
+++ branches/safari-607-branch/Tools/TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp 2019-04-10 17:11:18 UTC (rev 244128)
@@ -133,7 +133,7 @@
while (!WKPageGetFocusedFrame(webView.page()))
Util::spinRunLoop(10);
- kill(WKPageGetProcessIdentifier(webView.page()), 9);
+ WKPageTerminate(webView.page());
Util::run(&calledCrashHandler);
}
@@ -163,7 +163,7 @@
while (!WKPageGetFrameSetLargestFrame(webView.page()))
Util::spinRunLoop(10);
- kill(WKPageGetProcessIdentifier(webView.page()), 9);
+ WKPageTerminate(webView.page());
Util::run(&calledCrashHandler);
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes