aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/v4/data/subscriptions.1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/v4/data/subscriptions.1.qml')
-rw-r--r--tests/auto/qml/v4/data/subscriptions.1.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/auto/qml/v4/data/subscriptions.1.qml b/tests/auto/qml/v4/data/subscriptions.1.qml
deleted file mode 100644
index 607233819e..0000000000
--- a/tests/auto/qml/v4/data/subscriptions.1.qml
+++ /dev/null
@@ -1,16 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- id: root
- width: 400
- height: 400
-
- property real targetHeight: menuItems.height + 1
- property real heightValue: if (1) menuItems.height //this must be v8?
- property bool boolProp: menuItems.height > heightValue //this must be v4?
-
- Column {
- id: menuItems
- Item { height: 200; width: 10 }
- }
-}