summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSzabolcs David <davidsz@inf.u-szeged.hu>2014-04-17 03:38:13 -0700
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-22 11:58:08 +0200
commit88e705ba8f610f3c8f8d36bcbe72bb11a085d90f (patch)
treedbf782fbc21fe52e969312838a250b4949fb83ac /tests
parent6d98d884f482453ca7a9fa273fd21af8bda288f9 (diff)
Fix WebKit Bugzilla links
The bugs.webengine.org domain does not exist. Change-Id: I70ffb181e20e7c96ca3e6e32ee55b49b21f5bd9f Reviewed-by: Adam Kallai <kadam@inf.u-szeged.hu> Reviewed-by: Pierre Rossi <pierre.rossi@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/widgets/qwebengineframe/tst_qwebengineframe.cpp10
-rw-r--r--tests/auto/widgets/qwebenginehistory/tst_qwebenginehistory.cpp2
2 files changed, 6 insertions, 6 deletions
diff --git a/tests/auto/widgets/qwebengineframe/tst_qwebengineframe.cpp b/tests/auto/widgets/qwebengineframe/tst_qwebengineframe.cpp
index 55b30459f..89c783245 100644
--- a/tests/auto/widgets/qwebengineframe/tst_qwebengineframe.cpp
+++ b/tests/auto/widgets/qwebengineframe/tst_qwebengineframe.cpp
@@ -464,9 +464,9 @@ void tst_QWebEngineFrame::setHtmlWithImageResource()
page.setHtml(html);
waitForSignal(&page, SIGNAL(loadFinished(bool)), 200);
QCOMPARE(page.evaluateJavaScript("document.images.length").toInt(), 1);
- QEXPECT_FAIL("", "https://bugs.webengine.org/show_bug.cgi?id=118659", Continue);
+ QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=118659", Continue);
QCOMPARE(page.evaluateJavaScript("document.images[0].width").toInt(), 0);
- QEXPECT_FAIL("", "https://bugs.webengine.org/show_bug.cgi?id=118659", Continue);
+ QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=118659", Continue);
QCOMPARE(page.evaluateJavaScript("document.images[0].height").toInt(), 0);
#endif
}
@@ -502,7 +502,7 @@ void tst_QWebEngineFrame::setHtmlWithStylesheetResource()
page.setHtml(html, QUrl(QLatin1String("http://www.example.com/")));
waitForSignal(&page, SIGNAL(loadFinished(bool)), 200);
webElement = page.documentElement().findFirst("p");
- QEXPECT_FAIL("", "https://bugs.webengine.org/show_bug.cgi?id=118659", Continue);
+ QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=118659", Continue);
QCOMPARE(webElement.styleProperty("color", QWebEngineElement::CascadedStyle), QString());
#endif
}
@@ -1243,7 +1243,7 @@ void tst_QWebEngineFrame::setUrlWithFragment_data()
QTest::newRow("another URL") << QUrl("qrc:/test2.html");
}
-// Based on bug report https://bugs.webengine.org/show_bug.cgi?id=32723
+// Based on bug report https://bugs.webkit.org/show_bug.cgi?id=32723
void tst_QWebEngineFrame::setUrlWithFragment()
{
QFETCH(QUrl, previousUrl);
@@ -1342,7 +1342,7 @@ void tst_QWebEngineFrame::setUrlToInvalid()
// QUrls equivalent to QUrl() will be treated as such.
const QUrl aboutBlank("about:blank");
- const QUrl anotherInvalidUrl("1http://bugs.webengine.org");
+ const QUrl anotherInvalidUrl("1http://bugs.webkit.org");
QVERIFY(!anotherInvalidUrl.isEmpty()); // and they are not necessarily empty.
QVERIFY(!anotherInvalidUrl.isValid());
QCOMPARE(anotherInvalidUrl.toEncoded(), QUrl().toEncoded());
diff --git a/tests/auto/widgets/qwebenginehistory/tst_qwebenginehistory.cpp b/tests/auto/widgets/qwebenginehistory/tst_qwebenginehistory.cpp
index 86261721c..07427774a 100644
--- a/tests/auto/widgets/qwebenginehistory/tst_qwebenginehistory.cpp
+++ b/tests/auto/widgets/qwebenginehistory/tst_qwebenginehistory.cpp
@@ -433,7 +433,7 @@ void tst_QWebEngineHistory::popPushState_data()
QTest::newRow("forward") << "history.forward();";
}
-/** Crash test, WebKit bug 38840 (https://bugs.webengine.org/show_bug.cgi?id=38840) */
+/** Crash test, WebKit bug 38840 (https://bugs.webkit.org/show_bug.cgi?id=38840) */
void tst_QWebEngineHistory::popPushState()
{
QFETCH(QString, script);