⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243858 in webkit


Ignore:
Timestamp:
Apr 3, 2019, 10:44:01 PM (7 years ago)
Author:
Fujii Hironori
Message:

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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r243854 r243858  
     12019-04-03  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        The page's focusedFrame / frameSetLargestFrame do not get cleared on process swap or crash
     4        https://bugs.webkit.org/show_bug.cgi?id=196588
     5        <rdar://problem/49365787>
     6
     7        Unreviewed build fix for Windows port.
     8
     9        error C3861: 'kill': identifier not found
     10
     11        * TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp:
     12        (TestWebKitAPI::TEST): Replaced kill with WKPageTerminate.
     13
    1142019-04-03  Aakash Jain  <aakash_jain@apple.com>
    215
  • trunk/Tools/TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp

    r243849 r243858  
    134134        Util::spinRunLoop(10);
    135135
    136     kill(WKPageGetProcessIdentifier(webView.page()), 9);
     136    WKPageTerminate(webView.page());
    137137
    138138    Util::run(&calledCrashHandler);
     
    164164        Util::spinRunLoop(10);
    165165
    166     kill(WKPageGetProcessIdentifier(webView.page()), 9);
     166    WKPageTerminate(webView.page());
    167167
    168168    Util::run(&calledCrashHandler);
Note: See TracChangeset for help on using the changeset viewer.