Home | History | Annotate | Download | only in WebView

Lines Matching refs:_placeholderView

146     [_placeholderView release];
285 if (!_placeholderView)
286 _placeholderView = [[NSView alloc] init];
291 if (![_placeholderView window]) {
293 [_placeholderView setFrame:[webView frame]];
294 [_placeholderView setAutoresizingMask:[webView autoresizingMask]];
295 [_placeholderView removeFromSuperview];
296 [[webView superview] replaceSubview:webView with:_placeholderView];
529 // if the _placeholderView exists and is in a window before
531 if (_placeholderView && [_placeholderView window]) {
534 [webView setFrame:[_placeholderView frame]];
535 [webView setAutoresizingMask:[_placeholderView autoresizingMask]];
537 [[_placeholderView superview] replaceSubview:_placeholderView with:webView];