aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickflipable/data/test-flipable.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickflipable/data/test-flipable.qml')
-rw-r--r--tests/auto/declarative/qquickflipable/data/test-flipable.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/declarative/qquickflipable/data/test-flipable.qml b/tests/auto/declarative/qquickflipable/data/test-flipable.qml
new file mode 100644
index 0000000000..dff6d3fe39
--- /dev/null
+++ b/tests/auto/declarative/qquickflipable/data/test-flipable.qml
@@ -0,0 +1,9 @@
+import QtQuick 2.0
+
+Flipable {
+ id: flipable
+ width: 640; height: 480
+
+ front: Rectangle { anchors.fill: flipable }
+ back: Rectangle { anchors.fill: flipable }
+}