Home | History | Annotate | Download | only in qt

Lines Matching refs:url

100     if (reply->url().host() == "127.0.0.1" || reply->url().host() == "localhost") {
279 static QString urlSuitableForTestResult(const QString& url)
281 if (url.isEmpty() || !url.startsWith(QLatin1String("file://")))
282 return url;
284 return QFileInfo(url).fileName();
327 QString url = QString::fromUtf8(request.url().toEncoded());
355 url.toUtf8().constData(), typeDescription.toUtf8().constData());
385 QObject* WebPage::createPlugin(const QString& classId, const QUrl& url, const QStringList& paramNames, const QStringList& paramValues)
387 Q_UNUSED(url);
533 void DumpRenderTree::resetToConsistentStateBeforeTesting(const QUrl& url)
567 if (url.scheme() == "http" || url.scheme() == "https") {
593 static bool isGlobalHistoryTest(const QUrl& url)
595 if (url.path().contains("globalhistory/"))
600 static bool isWebInspectorTest(const QUrl& url)
602 if (url.path().contains("inspector/"))
607 static bool isDumpAsTextTest(const QUrl& url)
609 if (url.path().contains("dumpAsText/"))
615 void DumpRenderTree::open(const QUrl& url)
617 DumpRenderTreeSupportQt::dumpResourceLoadCallbacksPath(QFileInfo(url.toString()).path());
618 resetToConsistentStateBeforeTesting(url);
620 if (isWebInspectorTest(m_page->mainFrame()->url()))
623 if (isWebInspectorTest(url))
626 if (isDumpAsTextTest(url)) {
631 if (isGlobalHistoryTest(url))
635 bool isW3CTest = url.toString().contains("svg/W3C-SVG-1.1");
653 DumpRenderTreeSupportQt::dumpFrameLoader(url.toString().contains("loading/"));
655 m_page->mainFrame()->load(url);
852 QString url = item.url().toEncoded();
853 if (url.contains("file://")) {
857 QString res = url.mid(url.indexOf(layoutTestsString) + layoutTestsString.length());
864 result.append(url);