Home | History | Annotate | Download | only in WebPage

Lines Matching full:intrect

465 IntRect WebFrame::contentBounds() const
468 return IntRect();
472 return IntRect();
474 return IntRect(0, 0, view->contentsWidth(), view->contentsHeight());
477 IntRect WebFrame::visibleContentBounds() const
480 return IntRect();
484 return IntRect();
486 IntRect contentRect = view->visibleContentRect(true);
487 return IntRect(0, 0, contentRect.width(), contentRect.height());
490 IntRect WebFrame::visibleContentBoundsExcludingScrollbars() const
493 return IntRect();
497 return IntRect();
499 IntRect contentRect = view->visibleContentRect(false);
500 return IntRect(0, 0, contentRect.width(), contentRect.height());