Lines Matching full:documentview
371 id documentView = [[webFrame frameView] documentView];
372 if ([documentView respondsToSelector:@selector(setDrawsBackground:)])
373 [documentView setDrawsBackground:drawsBackground];
374 if ([documentView respondsToSelector:@selector(setBackgroundColor:)])
375 [documentView setBackgroundColor:backgroundColor];
419 id documentView = [_private->webFrameView documentView];
422 if ([documentView isKindOfClass:[WebHTMLView class]])
426 if ([documentView conformsToProtocol:@protocol(WebDocumentText)])
427 return [[documentView selectedString] length] > 0;
439 id documentView = [_private->webFrameView documentView];
440 if ([documentView conformsToProtocol:@protocol(WebDocumentText)])
441 [documentView deselectAll];
549 id documentView = [_private->webFrameView documentView];
550 if ([documentView isKindOfClass:[WebHTMLView class]] && [(WebHTMLView *)documentView _web_isDrawingIntoLayer])
959 NSView <WebDocumentView> *documentView = [[kit(frame) frameView] documentView];
960 if ([documentView isKindOfClass:[WebHTMLView class]])
961 [(WebHTMLView *)documentView _resumeNullEventsForAllNetscapePlugins];
969 NSView <WebDocumentView> *documentView = [[kit(frame) frameView] documentView];
970 if ([documentView isKindOfClass:[WebHTMLView class]])
971 [(WebHTMLView *)documentView _pauseNullEventsForAllNetscapePlugins];
1339 if (!_private->coreFrame->view()->documentView())