Home | History | Annotate | Download | only in qt

Lines Matching full:frame

238 bool WebPage::acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationType type)
273 return QWebPage::acceptNavigationRequest(frame, request, type);
288 // Lets handle error pages for the main frame for now.
289 if (info->frame != mainFrame())
524 QWebFrame *frame = qobject_cast<QWebFrame*>(sender());
525 Q_ASSERT(frame);
526 frame->addToJavaScriptWindowObject(QLatin1String("layoutTestController"), m_controller);
527 frame->addToJavaScriptWindowObject(QLatin1String("eventSender"), m_eventSender);
528 frame->addToJavaScriptWindowObject(QLatin1String("textInputController"), m_textInputController);
529 frame->addToJavaScriptWindowObject(QLatin1String("GCController"), m_gcController);
545 QString DumpRenderTree::dumpFramesAsText(QWebFrame* frame)
547 if (!frame || !qt_drt_hasDocumentElement(frame))
551 QWebFrame *parent = qobject_cast<QWebFrame *>(frame->parent());
554 result.append(frame->frameName());
558 QString innerText = frame->toPlainText();
563 QList<QWebFrame *> children = frame->childFrames();
656 // Prevent any further frame load callbacks from appearing after we dump the result.
753 void DumpRenderTree::connectFrame(QWebFrame *frame)
755 connect(frame, SIGNAL(javaScriptWindowObjectCleared()), this, SLOT(initJSObjects()));
756 connect(frame, SIGNAL(provisionalLoad()),
760 void DumpRenderTree::dumpDatabaseQuota(QWebFrame* frame, const QString& dbName)
764 QWebSecurityOrigin origin = frame->securityOrigin();