summaryrefslogtreecommitdiff
path: root/tests/quicktestbrowser/BrowserDialog.qml
diff options
context:
space:
mode:
authorPeter Varga <pvarga@inf.u-szeged.hu>2023-01-31 09:17:19 +0100
committerPeter Varga <pvarga@inf.u-szeged.hu>2023-02-02 10:55:34 +0100
commit756b8d63ac1710dc3661c1900a0a90ae3b0db926 (patch)
tree628aac8e82f0c486e2fafb67160e179b1a99ace2 /tests/quicktestbrowser/BrowserDialog.qml
parentc9852591cb8ccedfcdf0469db04be59671a912e9 (diff)
downloadqtwebengine-756b8d63ac1710dc3661c1900a0a90ae3b0db926.tar.gz
Remove quicktestbrowser
It is not maintained for a while and most probably also not used because it is not working since Qt6. QuickNanoBrowser example should be used instead, because it implements most of the quicktestbrowser features. Pick-to: 6.5 Change-Id: I330e1c6e0f4bf81c0bce0e6d70d47a513f63d8c7 Reviewed-by: Michal Klocek <michal.klocek@qt.io> Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'tests/quicktestbrowser/BrowserDialog.qml')
-rw-r--r--tests/quicktestbrowser/BrowserDialog.qml19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/quicktestbrowser/BrowserDialog.qml b/tests/quicktestbrowser/BrowserDialog.qml
deleted file mode 100644
index a896223dc..000000000
--- a/tests/quicktestbrowser/BrowserDialog.qml
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-
-import QtQuick 2.1
-import QtQuick.Window 2.2
-import QtWebEngine 1.1
-
-Window {
- property alias currentWebView: webView
- flags: Qt.Dialog
- width: 800
- height: 600
- visible: true
- onClosing: destroy()
- WebEngineView {
- id: webView
- anchors.fill: parent
- }
-}