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

« back to all changes in this revision

Viewing changes to tests/auto/quick/qquickpositioners/data/vertical.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
Item {
 
4
    width: 640
 
5
    height: 480
 
6
    Column {
 
7
        objectName: "column"
 
8
        Rectangle {
 
9
            objectName: "one"
 
10
            color: "red"
 
11
            width: 50
 
12
            height: 50
 
13
        }
 
14
        Rectangle {
 
15
            objectName: "two"
 
16
            color: "red"
 
17
            width: 20
 
18
            height: 10
 
19
        }
 
20
        Rectangle {
 
21
            objectName: "three"
 
22
            color: "red"
 
23
            width: 40
 
24
            height: 20
 
25
        }
 
26
    }
 
27
}