blob: 02b4d9170976c81d39513486582db3b05f39ea32 [file] [log] [blame]
/*
* Copyright (C) 2014-2019 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#import "config.h"
#import "WKWebViewPrivateForTestingMac.h"
#if PLATFORM(MAC)
#import "WKWebViewMac.h"
#import "_WKFrameHandleInternal.h"
#import "WebPageProxy.h"
#import "WebViewImpl.h"
@implementation WKWebView (WKTestingMac)
- (void)_requestControlledElementID
{
if (_page)
_page->requestControlledElementID();
}
- (void)_handleControlledElementIDResponse:(NSString *)identifier
{
// Overridden by subclasses.
}
- (void)_handleAcceptedCandidate:(NSTextCheckingResult *)candidate
{
_impl->handleAcceptedCandidate(candidate);
}
- (void)_didHandleAcceptedCandidate
{
// Overridden by subclasses.
}
- (void)_didUpdateCandidateListVisibility:(BOOL)visible
{
// Overridden by subclasses.
}
- (void)_forceRequestCandidates
{
_impl->forceRequestCandidatesForTesting();
}
- (BOOL)_shouldRequestCandidates
{
return _impl->shouldRequestCandidates();
}
- (void)_insertText:(id)string replacementRange:(NSRange)replacementRange
{
[self insertText:string replacementRange:replacementRange];
}
- (NSRect)_candidateRect
{
return _page->editorState().postLayoutData().focusedElementRect;
}
- (void)viewDidChangeEffectiveAppearance
{
// This can be called during [super initWithCoder:] and [super initWithFrame:].
// That is before _impl is ready to be used, so check. <rdar://problem/39611236>
if (!_impl)
return;
_impl->effectiveAppearanceDidChange();
}
- (void)_setHeaderBannerHeight:(int)height
{
_page->setHeaderBannerHeightForTesting(height);
}
- (void)_setFooterBannerHeight:(int)height
{
_page->setFooterBannerHeightForTesting(height);
}
- (void)_doAfterProcessingAllPendingMouseEvents:(dispatch_block_t)action
{
_impl->doAfterProcessingAllPendingMouseEvents(action);
}
- (NSMenu *)_activeMenu
{
// FIXME: Only the DOM paste access menu is supported for now. In the future, it could be
// extended to recognize the regular context menu as well.
return _impl->domPasteMenu();
}
@end
#endif // PLATFORM(MAC)