aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qdeclarativeanimations/data/badtype1.qml
blob: 43e1ec8572317787762beec480bdfd64578bf4f5 (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"
        width: 50; height: 50
        x: 100; y: 100
        PropertyAnimation on x { from: "blue"; to: "green"; }
    }
}