QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick2 / qquicktextedit / data / http / cursorHttpTestPass.qml
1 import QtQuick 2.0
2
3 Rectangle { width: 300; height: 300; color: "white"
4     resources: [ 
5         Component { id:cursorWait; WaitItem { objectName: "delegateSlow" } },
6         Component { id:cursorNorm; NormItem { objectName: "delegateOkay" } }
7     ] 
8     TextEdit {
9         cursorDelegate: cursorWait
10         text: "Hello"
11     }
12     TextEdit {
13         objectName: "textEditObject"
14         cursorDelegate: cursorNorm
15         focus: true;
16         text: "Hello"
17     }
18 }