aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlqt/data/color.qml
blob: 89e2216ce5e835a98b8ccf3b0dd4292e9a8b79d7 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0

QtObject {
    property variant test1: Qt.color("red")
    property variant test2: Qt.color("#ff00ff00")
    property variant test3: Qt.color("taint") // Taint is not a valid color
    property variant test4: Qt.color(0.5)
    property variant test5: Qt.color()
    property variant test6: Qt.color("blue", 0)
}