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

Object {
    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);
}