tests: Add two Chromiums tests to packagegroup-ivi-common-test.bb
[AGL/meta-agl.git] / meta-app-framework / recipes-core / 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: 1024
7         height: 768
8         visible: true
9         WebView {
10                 url: Qt.application.arguments[1]
11                 anchors.fill: parent
12         }
13 }