Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquickaccessible / data / statictext.qml
1 import QtQuick 2.0
2
3 Item {
4     width: 400
5     height: 400
6
7     Text {
8         x: 100
9         y: 20
10         width: 200
11         height: 50
12         text : "Hello Accessibility"
13     }
14
15     Text {
16         x: 100
17         y: 40
18         width: 100
19         height: 40
20         text : "Hello 2"
21         Accessible.role: Accessible.StaticText
22         Accessible.name: "The Hello 2 accessible text"
23         Accessible.description: "A text description"
24     }
25 }