Changeset 202957 in webkit
- Timestamp:
- Jul 7, 2016, 10:12:14 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
-
Source/WebKit/mac/ChangeLog (modified) (1 diff)
-
Source/WebKit/mac/WebView/WebView.mm (modified) (1 diff)
-
Source/WebKit/mac/WebView/WebViewPrivate.h (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/TestWebKitAPI/Tests/mac/ViewWithEditableAreaLeak.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/mac/ChangeLog
r202944 r202957 1 2016-07-07 Beth Dakin <bdakin@apple.com> 2 3 API Test DoNotLeakWebView.ViewThatLoadsEditableArea times out on macOS Sierra 4 https://bugs.webkit.org/show_bug.cgi?id=159532 5 -and corresponding- 6 rdar://problem/27177179 7 8 Reviewed by Tim Horton. 9 10 * WebView/WebView.mm: 11 (-[WebView showCandidates:forString:inRect:forSelectedRange:view:completionHandler:]): 12 (-[WebView forceRequestCandidatesForTesting]): 13 (-[WebView shouldRequestCandidates]): 14 * WebView/WebViewPrivate.h: 15 1 16 2016-07-07 Andy Estes <aestes@apple.com> 2 17 -
trunk/Source/WebKit/mac/WebView/WebView.mm
r202930 r202957 6724 6724 } 6725 6725 6726 - (void)forceRequestCandidatesForTesting 6727 { 6728 } 6729 6726 6730 - (BOOL)shouldRequestCandidates 6727 6731 { -
trunk/Source/WebKit/mac/WebView/WebViewPrivate.h
r201056 r202957 1070 1070 @interface WebView (WebShowCandidates) 1071 1071 - (void)showCandidates:(NSArray *)candidates forString:(NSString *)string inRect:(NSRect)rectOfTypedString forSelectedRange:(NSRange)range view:(NSView *)view completionHandler:(void (^)(NSTextCheckingResult *acceptedCandidate))completionBlock; 1072 - (void)forceRequestCandidatesForTesting; 1072 1073 @end 1073 1074 -
trunk/Tools/ChangeLog
r202944 r202957 1 2016-07-07 Beth Dakin <bdakin@apple.com> 2 3 API Test DoNotLeakWebView.ViewThatLoadsEditableArea times out on macOS Sierra 4 https://bugs.webkit.org/show_bug.cgi?id=159532 5 -and corresponding- 6 rdar://problem/27177179 7 8 Reviewed by Tim Horton. 9 10 * TestWebKitAPI/Tests/mac/ViewWithEditableAreaLeak.mm: 11 (-[DoNotLeakFrameLoadDelegate webView:didFinishLoadForFrame:]): 12 1 13 2016-07-07 Andy Estes <aestes@apple.com> 2 14 -
trunk/Tools/TestWebKitAPI/Tests/mac/ViewWithEditableAreaLeak.mm
r201056 r202957 63 63 - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame 64 64 { 65 [sender forceRequestCandidatesForTesting]; 65 66 didFinishLoad = true; 66 67 }
Note:
See TracChangeset
for help on using the changeset viewer.