summaryrefslogtreecommitdiffstats
path: root/meta-app-framework/recipes-core/web-runtime/web-runtime/web-runtime-webkit.qml
blob: d18b672cd9033b4f2940eec637de27ec03fb83f6 (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: 1024
	height: 768
	visible: true
	WebView {
		url: Qt.application.arguments[1]
		anchors.fill: parent
	}
}