aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/auto/qtquick1/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml b/tests/auto/qtquick1/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml
deleted file mode 100644
index 5f441d0db6..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 1.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
- }
-}