Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeimage / data / tiling.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     width: 800; height: 600
5
6     Image {
7         objectName: "vTiling"; height: 550; width: 200
8         source: "green.png"; fillMode: Image.TileVertically
9     }
10
11     Image {
12         objectName: "hTiling"; x: 225; height: 250; width: 550
13         source: "green.png"; fillMode: Image.TileHorizontally
14     }
15 }
16