QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / urlProperty.2.qml
1 import QtQuick 2.0
2 import Qt.test 1.0
3
4 MyQmlObject {
5     property bool result
6     stringProperty: "http://example.org"
7     urlProperty: stringProperty + "/?get%3cDATA%3e"
8     value: urlProperty == stringProperty + "/?get%3cDATA%3e"
9     result: urlProperty == urlProperty
10 }