aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextedit/data/twoInAColumn.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquicktextedit/data/twoInAColumn.qml')
-rw-r--r--tests/auto/quick/qquicktextedit/data/twoInAColumn.qml32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/auto/quick/qquicktextedit/data/twoInAColumn.qml b/tests/auto/quick/qquicktextedit/data/twoInAColumn.qml
new file mode 100644
index 0000000000..4fde0e0170
--- /dev/null
+++ b/tests/auto/quick/qquicktextedit/data/twoInAColumn.qml
@@ -0,0 +1,32 @@
+import QtQuick
+import QtQuick.Layouts
+
+ColumnLayout {
+ height: 200
+ width: 400
+ spacing: -6
+ Rectangle {
+ border.color: top.activeFocus ? "steelblue" : "lightgrey"
+ Layout.fillHeight: true
+ Layout.fillWidth: true
+ Layout.margins: 6
+ TextEdit {
+ id: top
+ objectName: "top"
+ text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+ anchors.fill: parent
+ }
+ }
+ Rectangle {
+ border.color: bottom.activeFocus ? "steelblue" : "lightgrey"
+ Layout.fillHeight: true
+ Layout.fillWidth: true
+ Layout.margins: 6
+ TextEdit {
+ id: bottom
+ objectName: "bottom"
+ text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+ anchors.fill: parent
+ }
+ }
+}