aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/accessibility/data/textfield.qml
blob: d25b325bb222a1356b86d2ac416016fe3dd16189 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.5
import QtQuick.Window 2.2
import Qt.labs.controls 1.0

Window {
    visible: true

    TextField {
        id: textfield
        objectName: "textfield"
        text: "TextField"
        Accessible.name: text
    }
}