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

Item {
    Rectangle {
        id: rect1
        width: 20
        height: 20
        color: "green"
    }

    Rectangle {
        id: rect2
        x: 20
        width: 20
        height: 20
        color: "red"
    }
}