aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qdeclarativeanimations/data/badtype3.qml
blob: 182efa0840b375a99870284d197dc19944f0f3e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Rectangle {
    width: 240
    height: 320
    Rectangle {
        color: "red"
        ColorAnimation on color { from: 10; to: 15; }
        width: 50; height: 50
        x: 100; y: 100
    }
}