Lines Matching full:page
322 // create our primary testing page/view.
347 // dump results itself when the last page loaded in the test has finished loading.
371 static void clearHistory(QWebPage* page)
373 // QWebHistory::clear() leaves current page, so remove it as well by setting
376 QWebHistory* history = page->history();
786 // Create a dummy container object to track the page in DRT.
792 QWebPage* page = static_cast<QWebPage*>(new WebPage(container, this));
796 // connect the needed signals to the page
797 connect(page, SIGNAL(frameCreated(QWebFrame*)), this, SLOT(connectFrame(QWebFrame*)));
798 connectFrame(page->mainFrame());
799 connect(page, SIGNAL(loadFinished(bool)), m_controller, SLOT(maybeDump(bool)));
800 connect(page, SIGNAL(windowCloseRequested()), this, SLOT(windowCloseRequested()));
801 return page;
806 QWebPage* page = qobject_cast<QWebPage*>(sender());
807 QObject* container = page->parent();