Update to 5.0.0-beta1
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquicktextedit / data / http / cursorHttpTestFail1.qml
1 import QtQuick 2.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         cursorVisible: true
12     }
13     TextEdit {
14         cursorDelegate: cursorWait
15         cursorVisible: true
16     }
17     TextEdit {
18         cursorDelegate: cursorNorm
19         cursorVisible: true
20     }
21 }