Fix test fails related to QTBUG-22237
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qsgimage / data / htiling.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     width: 200; height: 550
5
6     Image {
7         objectName: "tiling"; anchors.fill: parent
8         source: "green.png"; fillMode: Image.TileHorizontally
9     }
10 }
11