Merge branch 'next'
[AGL/meta-agl-demo.git] / recipes-graphics / web-runtime / web-runtime / web-runtime-webkit.qml
1 import QtQuick 2.1
2 import QtQuick.Controls 1.1
3 import QtWebKit 3.0
4
5 ApplicationWindow {
6         width: 1080
7         height: 1488
8         visible: true
9         WebView {
10                 url: Qt.application.arguments[1]
11                 anchors.fill: parent
12         }
13 }