Home | History | Annotate | Download | only in WebView

Lines Matching refs:WebFrameView

29 #import "WebFrameView.h"
87 @interface WebFrameView (WebFrameViewFileInternal) <WebCoreFrameView>
109 @implementation WebFrameView (WebFrameViewFileInternal)
124 @implementation WebFrameView (WebInternal)
189 // Not retained because the WebView owns the WebFrame, which owns the WebFrameView.
293 @implementation WebFrameView
407 // This works together with setNextKeyView to splice the WebFrameView into
433 // This works together with becomeFirstResponder to splice the WebFrameView into
615 if (WebFrameView *child = [self _largestScrollableChild]) {
627 if (WebFrameView *child = [self _largestScrollableChild]) {
1009 @implementation WebFrameView (WebPrivate)
1023 - (WebFrameView *)_largestScrollableChild
1025 WebFrameView *largest = nil;
1030 WebFrameView *childFrameView = [[frameChildren objectAtIndex:i] frameView];
1031 WebFrameView *scrollableFrameView = [childFrameView _isScrollable] ? childFrameView : [childFrameView _largestScrollableChild];
1058 - (WebFrameView *)_largestChildWithScrollBars
1063 WebFrameView *largest = nil;
1068 WebFrameView *childFrameView = [[frameChildren objectAtIndex:i] frameView];
1069 WebFrameView *scrollableFrameView = [childFrameView _hasScrollBars] ? childFrameView : [childFrameView _largestChildWithScrollBars];