Allow QML URLs to contain pre-encoded octets
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick2 / qquickaccessible / data / pushbutton.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     Accessible.role : Accessible.Button
5     property string text : "test"
6
7     Text {
8         anchors.fill : parent
9         text : parent.text
10     }
11
12     MouseArea {
13         anchors.fill : parent
14     }
15 }