aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/stringify_qtbug_50592.qml
blob: e739b85ef8270a3e0bf94c875ad72328851b52d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Item {
    Image {
        id: img
        source: "http://example.org/some_nonexistant_image.png"
        visible: false
    }

    property string source: JSON.stringify(img.source)
}