aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativevaluetypes/data/bindingsSpliceCorrectly.1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativevaluetypes/data/bindingsSpliceCorrectly.1.qml')
-rw-r--r--tests/auto/declarative/qdeclarativevaluetypes/data/bindingsSpliceCorrectly.1.qml29
1 files changed, 0 insertions, 29 deletions
diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingsSpliceCorrectly.1.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingsSpliceCorrectly.1.qml
deleted file mode 100644
index 2a1b936da6..0000000000
--- a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingsSpliceCorrectly.1.qml
+++ /dev/null
@@ -1,29 +0,0 @@
-import Test 1.0
-import QtQuick 2.0
-
-BindingsSpliceCorrectlyType {
- property bool test: false
-
- property bool italicProperty: false
-
- font.italic: italicProperty
-
- Component.onCompleted: {
- // Test initial state
- if (font.italic != false) return;
- if (font.bold != false) return;
-
- // Test italic binding worked
- italicProperty = true;
-
- if (font.italic != true) return;
- if (font.bold != false) return;
-
- // Test bold binding worked
- boldProperty = true;
- if (font.italic != true) return;
- if (font.bold != true) return;
-
- test = true;
- }
-}