aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteRelative.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteRelative.qml')
-rw-r--r--tests/auto/quick/qquicktextedit/data/embeddedImagesRemoteRelative.qml3
1 files changed, 2 insertions, 1 deletions
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"
}