Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / qdeclarativetextedit / linkActivated.qml
1 import QtQuick 1.1
2
3 Rectangle{
4     width: 100
5     height: 100
6     TextEdit{
7         text: '<a href="clicked">Click Me</a> '
8         onLinkActivated: txt.text=link;
9     }
10     Text{
11         id: txt
12         y:50
13         text: "unknown"
14     }
15 }