aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickcanvasitem/data/tst_image.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickcanvasitem/data/tst_image.qml')
-rw-r--r--tests/auto/quick/qquickcanvasitem/data/tst_image.qml14
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/auto/quick/qquickcanvasitem/data/tst_image.qml b/tests/auto/quick/qquickcanvasitem/data/tst_image.qml
index 5853c034c4..71931acae8 100644
--- a/tests/auto/quick/qquickcanvasitem/data/tst_image.qml
+++ b/tests/auto/quick/qquickcanvasitem/data/tst_image.qml
@@ -692,4 +692,16 @@ CanvasTestCase {
comparePixel(ctx, 50,25, 0,255,0,255, 2);
}
-}
+ function test_multiple_painting(row) {
+ var canvas = createCanvasObject(row);
+ var ctx = canvas.getContext('2d');
+ loadImages(canvas);
+
+ ctx.fillStyle = '#0f0';
+ ctx.fillRect(0, 0, 100, 50);
+ ctx.drawImage('red.png', 0, 0, 50, 50);
+ ctx.drawImage('red.png', 50, 0, 100, 50);
+ comparePixel(ctx, 25,25, 255,0,0,255, 2);
+ comparePixel(ctx, 75,25, 255,0,0,255, 2);
+ }
+} \ No newline at end of file