Changeset 235405 in webkit
- Timestamp:
- Aug 27, 2018, 3:23:03 PM (8 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
TestWebKitAPI/Tests/WebKit/ShouldKeepCurrentBackForwardListItemInList.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r235404 r235405 1 2018-08-27 Alex Christensen <achristensen@webkit.org> 2 3 Fix API test after r235398 4 https://bugs.webkit.org/show_bug.cgi?id=188997 5 6 * TestWebKitAPI/Tests/WebKit/ShouldKeepCurrentBackForwardListItemInList.cpp: 7 (TestWebKitAPI::setPageLoaderClient): 8 (TestWebKitAPI::willGoToBackForwardListItem): Deleted. 9 willGoToBackForwardListItem is unused and unsupported. Removing its check. 10 1 11 2018-08-27 Daniel Bates <dabates@apple.com> 2 12 -
trunk/Tools/TestWebKitAPI/Tests/WebKit/ShouldKeepCurrentBackForwardListItemInList.cpp
r235157 r235405 102 102 } 103 103 104 static void willGoToBackForwardListItem(WKPageRef, WKBackForwardListItemRef item, WKTypeRef userData, const void*)105 {106 if (!itemURLLastComponentIsString(item, "simple.html"))107 successfulSoFar = false;108 }109 110 104 static bool shouldKeepCurrentBackForwardListItemInList(WKPageRef page, WKBackForwardListItemRef item, const void*) 111 105 { … … 124 118 loaderClient.didFinishLoadForFrame = didFinishLoadForFrame; 125 119 loaderClient.shouldKeepCurrentBackForwardListItemInList = shouldKeepCurrentBackForwardListItemInList; 126 loaderClient.willGoToBackForwardListItem = willGoToBackForwardListItem;127 120 128 121 WKPageSetPageLoaderClient(page, &loaderClient.base);
Note:
See TracChangeset
for help on using the changeset viewer.