~loic.molinari/+junk/qtdeclarative-shadereffectsource-changes

« back to all changes in this revision

Viewing changes to tests/auto/quick/qquickanimations/data/badtype1.qml

  • Committer: Loïc Molinari
  • Date: 2012-04-21 17:59:51 UTC
  • Revision ID: loic.molinari@canonical.com-20120421175951-bqx68caaf5zrp76l
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.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
}