aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquicktextedit/data
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquicktextedit/data')
-rw-r--r--tests/auto/declarative/qquicktextedit/data/CursorRect.qml8
-rw-r--r--tests/auto/declarative/qquicktextedit/data/alignments.qml41
-rw-r--r--tests/auto/declarative/qquicktextedit/data/alignments_cb.pngbin496 -> 0 bytes
-rw-r--r--tests/auto/declarative/qquicktextedit/data/alignments_cc.pngbin556 -> 0 bytes
-rw-r--r--tests/auto/declarative/qquicktextedit/data/alignments_ct.pngbin533 -> 0 bytes
-rw-r--r--tests/auto/declarative/qquicktextedit/data/alignments_lb.pngbin496 -> 0 bytes
-rw-r--r--tests/auto/declarative/qquicktextedit/data/alignments_lc.pngbin535 -> 0 bytes
-rw-r--r--tests/auto/declarative/qquicktextedit/data/alignments_lt.pngbin514 -> 0 bytes
-rw-r--r--tests/auto/declarative/qquicktextedit/data/alignments_rb.pngbin505 -> 0 bytes
-rw-r--r--tests/auto/declarative/qquicktextedit/data/alignments_rc.pngbin559 -> 0 bytes
-rw-r--r--tests/auto/declarative/qquicktextedit/data/alignments_rt.pngbin539 -> 0 bytes
-rw-r--r--tests/auto/declarative/qquicktextedit/data/cursorTest.qml9
-rw-r--r--tests/auto/declarative/qquicktextedit/data/cursorVisible.qml6
-rw-r--r--tests/auto/declarative/qquicktextedit/data/geometrySignals.qml12
-rw-r--r--tests/auto/declarative/qquicktextedit/data/horizontalAlignment_RightToLeft.qml24
-rw-r--r--tests/auto/declarative/qquicktextedit/data/http/ErrItem.qml7
-rw-r--r--tests/auto/declarative/qquicktextedit/data/http/NormItem.qml6
-rw-r--r--tests/auto/declarative/qquicktextedit/data/http/cursorHttpTest.qml22
-rw-r--r--tests/auto/declarative/qquicktextedit/data/http/cursorHttpTestFail1.qml18
-rw-r--r--tests/auto/declarative/qquicktextedit/data/http/cursorHttpTestFail2.qml18
-rw-r--r--tests/auto/declarative/qquicktextedit/data/http/cursorHttpTestPass.qml18
-rw-r--r--tests/auto/declarative/qquicktextedit/data/http/qmldir4
-rw-r--r--tests/auto/declarative/qquicktextedit/data/httpfail/FailItem.qml5
-rw-r--r--tests/auto/declarative/qquicktextedit/data/httpslow/WaitItem.qml5
-rw-r--r--tests/auto/declarative/qquicktextedit/data/inputContext.qml7
-rw-r--r--tests/auto/declarative/qquicktextedit/data/inputMethodEvent.qml5
-rw-r--r--tests/auto/declarative/qquicktextedit/data/inputmethodhints.qml6
-rw-r--r--tests/auto/declarative/qquicktextedit/data/mouseselection_default.qml7
-rw-r--r--tests/auto/declarative/qquicktextedit/data/mouseselection_false.qml7
-rw-r--r--tests/auto/declarative/qquicktextedit/data/mouseselection_false_words.qml8
-rw-r--r--tests/auto/declarative/qquicktextedit/data/mouseselection_true.qml7
-rw-r--r--tests/auto/declarative/qquicktextedit/data/mouseselection_true_words.qml8
-rw-r--r--tests/auto/declarative/qquicktextedit/data/mouseselectionmode_characters.qml8
-rw-r--r--tests/auto/declarative/qquicktextedit/data/mouseselectionmode_default.qml7
-rw-r--r--tests/auto/declarative/qquicktextedit/data/mouseselectionmode_words.qml8
-rw-r--r--tests/auto/declarative/qquicktextedit/data/navigation.qml24
-rw-r--r--tests/auto/declarative/qquicktextedit/data/openInputPanel.qml7
-rw-r--r--tests/auto/declarative/qquicktextedit/data/positionAt.qml9
-rw-r--r--tests/auto/declarative/qquicktextedit/data/qtbug-22058.qml39
-rw-r--r--tests/auto/declarative/qquicktextedit/data/readOnly.qml12
40 files changed, 0 insertions, 372 deletions
diff --git a/tests/auto/declarative/qquicktextedit/data/CursorRect.qml b/tests/auto/declarative/qquicktextedit/data/CursorRect.qml
deleted file mode 100644
index cae3e63b72..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/CursorRect.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- focus: true
- objectName: "myEdit"
- width: 50
- text: "This is a long piece of text"
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/alignments.qml b/tests/auto/declarative/qquicktextedit/data/alignments.qml
deleted file mode 100644
index 7d365da8cb..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/alignments.qml
+++ /dev/null
@@ -1,41 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- id: top
- width: 70; height: 70;
-
- property alias horizontalAlignment: t.horizontalAlignment
- property alias verticalAlignment: t.verticalAlignment
- property alias wrapMode: t.wrapMode
- property alias running: timer.running
- property string txt: "Test"
-
- Rectangle {
- anchors.centerIn: parent
- width: 40
- height: 40
- color: "green"
-
- TextEdit {
- id: t
-
- anchors.fill: parent
- horizontalAlignment: TextEdit.AlignRight
- verticalAlignment: TextEdit.AlignBottom
- wrapMode: TextEdit.WordWrap
- text: top.txt
- }
- Timer {
- id: timer
-
- interval: 1
- running: true
- repeat: true
- onTriggered: {
- top.txt = top.txt + "<br>more " + top.txt.length;
- if (top.txt.length > 50)
- running = false
- }
- }
- }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/alignments_cb.png b/tests/auto/declarative/qquicktextedit/data/alignments_cb.png
deleted file mode 100644
index 99de2192de..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/alignments_cb.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qquicktextedit/data/alignments_cc.png b/tests/auto/declarative/qquicktextedit/data/alignments_cc.png
deleted file mode 100644
index cb85251180..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/alignments_cc.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qquicktextedit/data/alignments_ct.png b/tests/auto/declarative/qquicktextedit/data/alignments_ct.png
deleted file mode 100644
index ddca549c82..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/alignments_ct.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qquicktextedit/data/alignments_lb.png b/tests/auto/declarative/qquicktextedit/data/alignments_lb.png
deleted file mode 100644
index 1b50a81f3d..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/alignments_lb.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qquicktextedit/data/alignments_lc.png b/tests/auto/declarative/qquicktextedit/data/alignments_lc.png
deleted file mode 100644
index f041b868f8..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/alignments_lc.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qquicktextedit/data/alignments_lt.png b/tests/auto/declarative/qquicktextedit/data/alignments_lt.png
deleted file mode 100644
index c75e0d158e..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/alignments_lt.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qquicktextedit/data/alignments_rb.png b/tests/auto/declarative/qquicktextedit/data/alignments_rb.png
deleted file mode 100644
index b06a5da715..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/alignments_rb.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qquicktextedit/data/alignments_rc.png b/tests/auto/declarative/qquicktextedit/data/alignments_rc.png
deleted file mode 100644
index e468857cd0..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/alignments_rc.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qquicktextedit/data/alignments_rt.png b/tests/auto/declarative/qquicktextedit/data/alignments_rt.png
deleted file mode 100644
index 576715ffce..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/alignments_rt.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qquicktextedit/data/cursorTest.qml b/tests/auto/declarative/qquicktextedit/data/cursorTest.qml
deleted file mode 100644
index 7bfc869403..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/cursorTest.qml
+++ /dev/null
@@ -1,9 +0,0 @@
-import QtQuick 2.0
-
-Rectangle { width: 300; height: 300; color: "white"
- property string contextualProperty: "Hello"
- TextEdit { text: "Hello world!"; id: textEditObject; objectName: "textEditObject"
- resources: [ Component { id:cursor; Item { id:cursorInstance; objectName: "cursorInstance"; property string localProperty: contextualProperty } } ]
- cursorDelegate: cursor
- }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/cursorVisible.qml b/tests/auto/declarative/qquicktextedit/data/cursorVisible.qml
deleted file mode 100644
index 49e9386947..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/cursorVisible.qml
+++ /dev/null
@@ -1,6 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 100
- height: 20
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/geometrySignals.qml b/tests/auto/declarative/qquicktextedit/data/geometrySignals.qml
deleted file mode 100644
index 3dbe61c74b..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/geometrySignals.qml
+++ /dev/null
@@ -1,12 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 400; height: 500;
- property int bindingWidth: text.width
- property int bindingHeight: text.height
-
- TextInput {
- id: text
- anchors.fill: parent
- }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/horizontalAlignment_RightToLeft.qml b/tests/auto/declarative/qquicktextedit/data/horizontalAlignment_RightToLeft.qml
deleted file mode 100644
index 4cd92367ec..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/horizontalAlignment_RightToLeft.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- id: top
- width: 200; height: 70;
-
- property alias horizontalAlignment: text.horizontalAlignment
- property string text: "اختبا"
-
- Rectangle {
- anchors.centerIn: parent
- width: 200
- height: 20
- color: "green"
-
- TextEdit {
- id: text
- objectName: "text"
- anchors.fill: parent
- text: top.text
- focus: true
- }
- }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/http/ErrItem.qml b/tests/auto/declarative/qquicktextedit/data/http/ErrItem.qml
deleted file mode 100644
index 68c0e0c093..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/http/ErrItem.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 2.0
-
-Item{
- Fungus{
- palatable: false;
- }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/http/NormItem.qml b/tests/auto/declarative/qquicktextedit/data/http/NormItem.qml
deleted file mode 100644
index 2e4c1ed440..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/http/NormItem.qml
+++ /dev/null
@@ -1,6 +0,0 @@
-import QtQuick 2.0
-
-Item {
- objectName: "delegateOkay"
- Rectangle { }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/http/cursorHttpTest.qml b/tests/auto/declarative/qquicktextedit/data/http/cursorHttpTest.qml
deleted file mode 100644
index be4526e22b..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/http/cursorHttpTest.qml
+++ /dev/null
@@ -1,22 +0,0 @@
-import QtQuick 2.0
-
-Rectangle { width: 300; height: 300; color: "white"
- resources: [
- Component { id:cursorFail; FailItem { objectName: "delegateFail" } },
- Component { id:cursorWait; WaitItem { objectName: "delegateSlow" } },
- Component { id:cursorNorm; NormItem { objectName: "delegateOkay" } },
- Component { id:cursorErr; ErrItem { objectName: "delegateErrorA" } }
- ]
- TextEdit {
- cursorDelegate: cursorFail
- }
- TextEdit {
- cursorDelegate: cursorWait
- }
- TextEdit {
- cursorDelegate: cursorNorm
- }
- TextEdit {
- cursorDelegate: cursorErr
- }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/http/cursorHttpTestFail1.qml b/tests/auto/declarative/qquicktextedit/data/http/cursorHttpTestFail1.qml
deleted file mode 100644
index 1d7763f913..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/http/cursorHttpTestFail1.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 2.0
-
-Rectangle { width: 300; height: 300; color: "white"
- resources: [
- Component { id:cursorFail; FailItem { objectName: "delegateFail" } },
- Component { id:cursorWait; WaitItem { objectName: "delegateSlow" } },
- Component { id:cursorNorm; NormItem { objectName: "delegateOkay" } }
- ]
- TextEdit {
- cursorDelegate: cursorFail
- }
- TextEdit {
- cursorDelegate: cursorWait
- }
- TextEdit {
- cursorDelegate: cursorNorm
- }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/http/cursorHttpTestFail2.qml b/tests/auto/declarative/qquicktextedit/data/http/cursorHttpTestFail2.qml
deleted file mode 100644
index c82ec02e68..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/http/cursorHttpTestFail2.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 2.0
-
-Rectangle { width: 300; height: 300; color: "white"
- resources: [
- Component { id:cursorWait; WaitItem { objectName: "delegateSlow" } },
- Component { id:cursorNorm; NormItem { objectName: "delegateOkay" } },
- Component { id:cursorErr; ErrItem { objectName: "delegateErrorA" } }
- ]
- TextEdit {
- cursorDelegate: cursorWait
- }
- TextEdit {
- cursorDelegate: cursorNorm
- }
- TextEdit {
- cursorDelegate: cursorErr
- }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/http/cursorHttpTestPass.qml b/tests/auto/declarative/qquicktextedit/data/http/cursorHttpTestPass.qml
deleted file mode 100644
index 96d582c95d..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/http/cursorHttpTestPass.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 2.0
-
-Rectangle { width: 300; height: 300; color: "white"
- resources: [
- Component { id:cursorWait; WaitItem { objectName: "delegateSlow" } },
- Component { id:cursorNorm; NormItem { objectName: "delegateOkay" } }
- ]
- TextEdit {
- cursorDelegate: cursorWait
- text: "Hello"
- }
- TextEdit {
- objectName: "textEditObject"
- cursorDelegate: cursorNorm
- focus: true;
- text: "Hello"
- }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/http/qmldir b/tests/auto/declarative/qquicktextedit/data/http/qmldir
deleted file mode 100644
index 886e6ffec0..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/http/qmldir
+++ /dev/null
@@ -1,4 +0,0 @@
-ErrItem ErrItem.qml
-NormItem NormItem.qml
-FailItem FailItem.qml
-WaitItem WaitItem.qml
diff --git a/tests/auto/declarative/qquicktextedit/data/httpfail/FailItem.qml b/tests/auto/declarative/qquicktextedit/data/httpfail/FailItem.qml
deleted file mode 100644
index 8161843479..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/httpfail/FailItem.qml
+++ /dev/null
@@ -1,5 +0,0 @@
-import QtQuick 2.0
-
-Item {
- Rectangle { }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/httpslow/WaitItem.qml b/tests/auto/declarative/qquicktextedit/data/httpslow/WaitItem.qml
deleted file mode 100644
index 8161843479..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/httpslow/WaitItem.qml
+++ /dev/null
@@ -1,5 +0,0 @@
-import QtQuick 2.0
-
-Item {
- Rectangle { }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/inputContext.qml b/tests/auto/declarative/qquicktextedit/data/inputContext.qml
deleted file mode 100644
index a37c77e3bf..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/inputContext.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- width: 200
- text: "supercalifra"
- focus: true
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/inputMethodEvent.qml b/tests/auto/declarative/qquicktextedit/data/inputMethodEvent.qml
deleted file mode 100644
index e3f629ce3e..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/inputMethodEvent.qml
+++ /dev/null
@@ -1,5 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- focus: true
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/inputmethodhints.qml b/tests/auto/declarative/qquicktextedit/data/inputmethodhints.qml
deleted file mode 100644
index dec3b978e7..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/inputmethodhints.qml
+++ /dev/null
@@ -1,6 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- text: "Hello world!"
- inputMethodHints: Qt.ImhNoPredictiveText
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/mouseselection_default.qml b/tests/auto/declarative/qquicktextedit/data/mouseselection_default.qml
deleted file mode 100644
index ac32f4ced7..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/mouseselection_default.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: false
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/mouseselection_false.qml b/tests/auto/declarative/qquicktextedit/data/mouseselection_false.qml
deleted file mode 100644
index ac32f4ced7..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/mouseselection_false.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: false
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/mouseselection_false_words.qml b/tests/auto/declarative/qquicktextedit/data/mouseselection_false_words.qml
deleted file mode 100644
index 86aea46a85..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/mouseselection_false_words.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- focus: true
- text: "0123456789 ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: false
- mouseSelectionMode: TextEdit.SelectWords
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/mouseselection_true.qml b/tests/auto/declarative/qquicktextedit/data/mouseselection_true.qml
deleted file mode 100644
index 7c7cb0b6fc..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/mouseselection_true.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: true
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/mouseselection_true_words.qml b/tests/auto/declarative/qquicktextedit/data/mouseselection_true_words.qml
deleted file mode 100644
index c356999220..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/mouseselection_true_words.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- focus: true
- text: "0123456789 ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: true
- mouseSelectionMode: TextEdit.SelectWords
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/mouseselectionmode_characters.qml b/tests/auto/declarative/qquicktextedit/data/mouseselectionmode_characters.qml
deleted file mode 100644
index c1fe42fd57..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/mouseselectionmode_characters.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: true
- mouseSelectionMode: TextEdit.SelectCharacters
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/mouseselectionmode_default.qml b/tests/auto/declarative/qquicktextedit/data/mouseselectionmode_default.qml
deleted file mode 100644
index 7c7cb0b6fc..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/mouseselectionmode_default.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: true
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/mouseselectionmode_words.qml b/tests/auto/declarative/qquicktextedit/data/mouseselectionmode_words.qml
deleted file mode 100644
index 0a372bbf83..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/mouseselectionmode_words.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: true
- mouseSelectionMode: TextEdit.SelectWords
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/navigation.qml b/tests/auto/declarative/qquicktextedit/data/navigation.qml
deleted file mode 100644
index 0201c62b3c..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/navigation.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- property variant myInput: input
-
- width: 800; height: 600; color: "blue"
-
- Item {
- id: firstItem;
- KeyNavigation.right: input
- }
-
- TextEdit { id: input; focus: true
- KeyNavigation.left: firstItem
- KeyNavigation.right: lastItem
- KeyNavigation.up: firstItem
- KeyNavigation.down: lastItem
- text: "a"
- }
- Item {
- id: lastItem
- KeyNavigation.left: input
- }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/openInputPanel.qml b/tests/auto/declarative/qquicktextedit/data/openInputPanel.qml
deleted file mode 100644
index d3aecf21be..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/openInputPanel.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- width: 100; height: 100
- text: "Hello world"
- focus: false
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/positionAt.qml b/tests/auto/declarative/qquicktextedit/data/positionAt.qml
deleted file mode 100644
index 19093281fe..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/positionAt.qml
+++ /dev/null
@@ -1,9 +0,0 @@
-import QtQuick 2.0
-
-TextEdit {
- focus: true
- objectName: "myInput"
- width: 50
- height: 25
- text: "This is\n a long piece of text"
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/qtbug-22058.qml b/tests/auto/declarative/qquicktextedit/data/qtbug-22058.qml
deleted file mode 100644
index 8ad1514fbf..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/qtbug-22058.qml
+++ /dev/null
@@ -1,39 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- property variant inputField: textedit
- height: 200
- width: 200
-
- Rectangle {
- height: parent.height /2
- width: parent.width
- color: "transparent"
- border.color: "black"
- border.width: 4
- Text {
- anchors.centerIn: parent
- height: parent.height * .95
- width: parent.width * .95
- text: textedit.text
- }
- }
-
- Rectangle {
- height: parent.height /2
- width: parent.width
- color: "transparent"
- border.color: "black"
- border.width: 4
- anchors.bottom: parent.bottom
- TextEdit {
- id: textedit
- anchors.centerIn: parent
- height: parent.height * .95
- width: parent.width * .95
- focus: true
- wrapMode: TextEdit.WordWrap
- text: ""
- }
- }
-}
diff --git a/tests/auto/declarative/qquicktextedit/data/readOnly.qml b/tests/auto/declarative/qquicktextedit/data/readOnly.qml
deleted file mode 100644
index 085adba5fb..0000000000
--- a/tests/auto/declarative/qquicktextedit/data/readOnly.qml
+++ /dev/null
@@ -1,12 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- property variant myInput: input
-
- width: 800; height: 600; color: "blue"
-
- TextEdit { id: input; focus: true
- readOnly: true
- text: "I am the very model of a modern major general.\n"
- }
-}