diff options
Diffstat (limited to 'tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml')
-rw-r--r-- | tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml b/tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml new file mode 100644 index 0000000..1389d86 --- /dev/null +++ b/tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml @@ -0,0 +1,12 @@ +import Qt 4.6 + +Rectangle { + property var myInput: Input + + width: 800; height: 600; color: "blue" + + TextInput { id: Input; focus: true + readOnly: true + text: "I am the very model of a modern major general.\n" + } +} |