diff options
Diffstat (limited to 'tests/auto/qml/qmlcppcodegen/data/urlString.qml')
| -rw-r--r-- | tests/auto/qml/qmlcppcodegen/data/urlString.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlcppcodegen/data/urlString.qml b/tests/auto/qml/qmlcppcodegen/data/urlString.qml new file mode 100644 index 0000000000..511c54532c --- /dev/null +++ b/tests/auto/qml/qmlcppcodegen/data/urlString.qml @@ -0,0 +1,13 @@ +pragma Strict +import QtQml + +QtObject { + id: self + property url c: "http://aabbcc.com" + property url d: "http://ccbbaa.com" + property url e: "http:" + "//a112233.de" + Component.onCompleted: { + c = "http://dddddd.com"; + self.d = "http://aaaaaa.com"; + } +} |
