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