aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlpixmapcache/data/dataLeak.qml
blob: 724ce5d8169879f28ba12b0f2517d954d8ec31a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.0

Item {
    id: root
    width: 800
    height: 800

    Image {
        id: i1
        source: "exists1.png";
        anchors.top: parent.top;
    }
    Image {
        id: i2
        source: "exists2.png"
        anchors.top: i1.bottom;
    }
}