Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativetextedit / data / http / cursorHttpTestFail1.qml
1 import QtQuick 1.0
2
3 Rectangle { width: 300; height: 300; color: "white"
4     resources: [ 
5         Component { id:cursorFail; FailItem { objectName: "delegateFail" } },
6         Component { id:cursorWait; WaitItem { objectName: "delegateSlow" } },
7         Component { id:cursorNorm; NormItem { objectName: "delegateOkay" } }
8     ] 
9     TextEdit {
10         cursorDelegate: cursorFail
11     }
12     TextEdit {
13         cursorDelegate: cursorWait
14     }
15     TextEdit {
16         cursorDelegate: cursorNorm
17     }
18 }