aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/touchmouse/data/twoitems.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/touchmouse/data/twoitems.qml')
-rw-r--r--tests/auto/quick/touchmouse/data/twoitems.qml22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/auto/quick/touchmouse/data/twoitems.qml b/tests/auto/quick/touchmouse/data/twoitems.qml
new file mode 100644
index 0000000000..afbf35fe1a
--- /dev/null
+++ b/tests/auto/quick/touchmouse/data/twoitems.qml
@@ -0,0 +1,22 @@
+import QtQuick 2.0
+import Qt.test 1.0
+
+Rectangle {
+ id: root
+ width: 320
+ height: 480
+ color: "green"
+
+ EventItem {
+ objectName: "eventItem1"
+ height: 200
+ width: 100
+
+ EventItem {
+ objectName: "eventItem2"
+ height: 100
+ width: 100
+ }
+ }
+}
+