aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeanimations/data/badtype3.qml
blob: 2599e70cc9d3d47479f5f2a05685ecdec0b5f045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 1.0

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