aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2015-09-02 17:19:03 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-09-02 17:19:48 +0200
commit149ece7a0cfb4fc90fe4544379ee2772fde881fd (patch)
tree6a8a3ec11beb53eb06ccc69a0ec04a9d80053c0e /tests/auto/quick
parent9ee31a6ae852eb347951e371958dd435409c9941 (diff)
parentd1b20513798ed441afddb87fd4e7facce78349e1 (diff)
Merge remote-tracking branch 'origin/5.5' into 5.6
Diffstat (limited to 'tests/auto/quick')
-rw-r--r--tests/auto/quick/qquickcanvasitem/data/tst_context.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickcanvasitem/data/tst_context.qml b/tests/auto/quick/qquickcanvasitem/data/tst_context.qml
index f266c16d76..566ad9d3d5 100644
--- a/tests/auto/quick/qquickcanvasitem/data/tst_context.qml
+++ b/tests/auto/quick/qquickcanvasitem/data/tst_context.qml
@@ -182,4 +182,22 @@ Canvas {
}
}
}
+
+ TestCase {
+ name: "Colors"
+ when: canvas.available
+
+ function test_colors() {
+ wait(100);
+ compare(contextSpy.count, 1);
+
+ var ctx = canvas.getContext("2d");
+ // QTBUG-47894
+ ctx.strokeStyle = 'hsl(255, 100%, 50%)';
+ var c1 = ctx.strokeStyle.toString();
+ ctx.strokeStyle = 'hsl(320, 100%, 50%)';
+ var c2 = ctx.strokeStyle.toString();
+ verify(c1 !== c2);
+ }
+ }
}