aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicOne.qml
blob: 4deda512868d8508f95ce4a1559739a4d90253d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.0

Item {
    id: root
    property int dynamicWidth: 10

    Rectangle {
        width: 100
        height: root.dynamicWidth + (5*3) - 8 + (root.dynamicWidth/10)
        color: "red"
        border.color: "black"
        border.width: 5
        radius: 10
    }
}