summaryrefslogtreecommitdiffstats
path: root/tests/manual/examples/quick/minimal/main.qml
blob: 6890b501b9c12fd8ae39368d4fc5d5290fa0ea0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Window
import QtWebEngine

Window {
    width: 1024
    height: 750
    visible: true
    WebEngineView {
        anchors.fill: parent
        url: "chrome://qt"
    }
}