Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeqt / data / rect.qml
1 import QtQuick 1.0
2
3 QtObject {
4     property variant test1: Qt.rect(10, 13, 100, 109)
5     property variant test2: Qt.rect(-10, 13, 100, 109.6)
6     property variant test3: Qt.rect(10, 13);
7     property variant test4: Qt.rect(10, 13, 100, 109, 10)
8     property variant test5: Qt.rect(10, 13, 100, -109)
9 }