Add missing file to qquickflickable test
authorMartin Jones <martin.jones@jollamobile.com>
Fri, 23 Aug 2013 23:06:10 +0000 (09:06 +1000)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Mon, 9 Sep 2013 08:07:24 +0000 (10:07 +0200)
Change-Id: I69014a85f61bbf1958daa1e4b6cda59534c04a83
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Reviewed-by: Alan Alpert <aalpert@blackberry.com>
tests/auto/quick/qquickflickable/data/nestedmousearea.qml [new file with mode: 0644]

diff --git a/tests/auto/quick/qquickflickable/data/nestedmousearea.qml b/tests/auto/quick/qquickflickable/data/nestedmousearea.qml
new file mode 100644 (file)
index 0000000..f8f1e59
--- /dev/null
@@ -0,0 +1,26 @@
+import QtQuick 2.0
+
+Flickable {
+    id: outer
+    objectName: "flickable"
+    width: 400
+    height: 400
+    contentX: 50
+    contentY: 50
+    contentWidth: 500
+    contentHeight: 500
+
+    Rectangle {
+        objectName: "nested"
+        x: 100
+        y: 100
+        width: 300
+        height: 300
+
+        color: "yellow"
+        MouseArea {
+            anchors.fill: parent
+            drag.target: parent
+        }
+    }
+}