Extract all QtQuick 1 elements into a separate library/plugin.
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick1 / qdeclarativeanimations / data / badtype1.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     width: 240
5     height: 320
6     Rectangle {
7         color: "red"
8         width: 50; height: 50
9         x: 100; y: 100
10         PropertyAnimation on x { from: "blue"; to: "green"; }
11     }
12 }