aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquicktextinput/data/qtbug-19956int.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquicktextinput/data/qtbug-19956int.qml')
-rw-r--r--tests/auto/declarative/qquicktextinput/data/qtbug-19956int.qml15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/auto/declarative/qquicktextinput/data/qtbug-19956int.qml b/tests/auto/declarative/qquicktextinput/data/qtbug-19956int.qml
deleted file mode 100644
index 0d70eedb80..0000000000
--- a/tests/auto/declarative/qquicktextinput/data/qtbug-19956int.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-import QtQuick 2.0
-
-TextInput {
- id: textinput
- property real topvalue: 30
- property real bottomvalue: 10
- height: 50
- width: 200
- text: "20"
- validator: IntValidator {
- id: intvalidator
- bottom: bottomvalue
- top: topvalue
- }
-}