summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlqt/data/lighter.qml
blob: 4e0c43110b55c1972026918e63ee9fb724da3e9b (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.6

QtObject {
    property var test1: Qt.lighter(Qt.rgba(1, 0.8, 0.3))
    property var test2: Qt.lighter()
    property var test3: Qt.lighter(Qt.rgba(1, 0.8, 0.3), 10)
    property var test4: Qt.lighter("red");
    property var test5: Qt.lighter("perfectred"); // Non-existant color
    property var test6: Qt.lighter(10);
}