summaryrefslogtreecommitdiffstats
path: root/meta-attic/recipes-graphics/web-runtime/web-runtime/web-runtime-webkit.qml
blob: 8025ab12e41e1583a17829efcbdebf8a7b22d509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.1
import QtQuick.Controls 1.1
import QtWebKit 3.0

ApplicationWindow {
	width: 1080
	height: 1488
	visible: true
	WebView {
		url: Qt.application.arguments[1]
		anchors.fill: parent
	}
}