aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/urlProperty.1.qml
blob: 451cb032065148ed50cbb2b998716bb2691b401d (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0
import Qt.test 1.0

MyQmlObject {
    property bool result
    urlProperty: stringProperty + "/index.html"
    intProperty: if (urlProperty) 123; else 321
    value: urlProperty == stringProperty + "/index.html"
    result: urlProperty == urlProperty
}