aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextedit/data
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2015-04-28 10:57:34 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-04-28 14:29:59 +0200
commit94db5de2acefb6e96d4f6cfda2df14905a5e63c5 (patch)
treec361f5dd4989ee0743e2a9f94b64dbb2127e5dea /tests/auto/quick/qquicktextedit/data
parent11f67b80c4eab4b1e3eb8e6b1e8b69e7a60e42a9 (diff)
parentdee67b41b031791c7b6313e935e622ef8d594686 (diff)
Merge remote-tracking branch 'origin/5.5' into dev
Conflicts: tests/auto/quick/qquicktext/tst_qquicktext.cpp Change-Id: I075e742da8396a268d97d3ab34bcd9e0c0cf001f
Diffstat (limited to 'tests/auto/quick/qquicktextedit/data')
-rw-r--r--tests/auto/quick/qquicktextedit/data/embeddedImagesRemote.qml3
-rw-r--r--tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteError.qml3
-rw-r--r--tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteRelative.qml3
3 files changed, 6 insertions, 3 deletions
diff --git a/tests/auto/quick/qquicktextedit/data/embeddedImagesRemote.qml b/tests/auto/quick/qquicktextedit/data/embeddedImagesRemote.qml
index a823882692..6fc12edf35 100644
--- a/tests/auto/quick/qquicktextedit/data/embeddedImagesRemote.qml
+++ b/tests/auto/quick/qquicktextedit/data/embeddedImagesRemote.qml
@@ -1,6 +1,7 @@
import QtQuick 2.0
TextEdit {
+ property string serverBaseUrl;
textFormat: TextEdit.RichText
- text: "<img src='http://127.0.0.1:42332/exists.png'>"
+ text: "<img src='" + serverBaseUrl + "/exists.png'>"
}
diff --git a/tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteError.qml b/tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteError.qml
index c6172b68dc..7ac59e2db4 100644
--- a/tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteError.qml
+++ b/tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteError.qml
@@ -1,6 +1,7 @@
import QtQuick 2.0
TextEdit {
+ property string serverBaseUrl;
textFormat: TextEdit.RichText
- text: "<img src='http://127.0.0.1:42332/notexists.png'>"
+ text: "<img src='" + serverBaseUrl + "/notexists.png'>"
}
diff --git a/tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteRelative.qml b/tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteRelative.qml
index ee39e089ea..12894ec741 100644
--- a/tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteRelative.qml
+++ b/tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteRelative.qml
@@ -1,7 +1,8 @@
import QtQuick 2.0
TextEdit {
+ property string serverBaseUrl;
textFormat: TextEdit.RichText
text: "<img src='exists.png'>"
- baseUrl: "http://127.0.0.1:42332/text.html"
+ baseUrl: serverBaseUrl + "/text.html"
}