Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / qdeclarativetextedit / qt-669.qml
1 import QtQuick 1.0
2 import "../shared" 1.0
3
4 Rectangle {
5     Component { id: testableCursor
6         //This shouldn't blink
7         Rectangle {
8             color:"black"
9             width:1
10         }
11     }
12     width:300;
13     height:40;
14     TestTextEdit {
15         focus: true;
16         cursorDelegate: testableCursor
17         text: "Jackdaws love my big sphinx of Quartz"
18     }
19 }