aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/testbench/controls/TextArea.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/testbench/controls/TextArea.qml')
-rw-r--r--tests/manual/testbench/controls/TextArea.qml14
1 files changed, 12 insertions, 2 deletions
diff --git a/tests/manual/testbench/controls/TextArea.qml b/tests/manual/testbench/controls/TextArea.qml
index de34076a..8f2493f4 100644
--- a/tests/manual/testbench/controls/TextArea.qml
+++ b/tests/manual/testbench/controls/TextArea.qml
@@ -57,7 +57,17 @@ QtObject {
["disabled"],
]
- property Component component: TextArea {
- text: "TextArea\nTextArea\nTextArea"
+ property Component component: Column {
+ spacing: 10
+
+ TextArea {
+ text: "TextArea\nwith\ntext"
+ enabled: !is("disabled")
+ }
+
+ TextArea {
+ placeholderText: "TextArea with placeholderText"
+ enabled: !is("disabled")
+ }
}
}