summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qtbug-70248/test.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qtbug-70248/test.qml')
-rw-r--r--tests/auto/quick/qtbug-70248/test.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/auto/quick/qtbug-70248/test.qml b/tests/auto/quick/qtbug-70248/test.qml
new file mode 100644
index 000000000..35962aff5
--- /dev/null
+++ b/tests/auto/quick/qtbug-70248/test.qml
@@ -0,0 +1,16 @@
+import QtQuick 2.9
+import QtQuick.Window 2.2
+import QtWebEngine 1.3
+
+Window {
+ visible: true
+ width: 640
+ height: 480
+
+ property var url: view && view.url
+
+ WebEngineView {
+ id: view
+ anchors.fill: parent
+ }
+}