summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qtbug-70248/test.qml
blob: 35962aff543ec4a38641fab21b77771e76c6f945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
    }
}