blob: 0e8bdaec96ea0033a4b405e7dd7cc6bb57f16c83 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import QtQuick 2.0
import Qt.test 1.0
MyQmlObject {
property bool result
stringProperty: "http://example.org"
urlProperty: stringProperty + "/?get%3cDATA%3e"
value: urlProperty == stringProperty + "/?get%3cDATA%3e"
result: urlProperty == urlProperty
}
|