aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickimage/data/vtiling.qml
blob: 84bb18c6e860cdfde35d4357d92ec4bcd0bf5922 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

Rectangle {
    width: 200; height: 200

    Image {
        objectName: "tiling"; anchors.fill: parent
        source: "green.png"; fillMode: Image.TileVertically
    }
}