summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/canvas/canvas-pattern-behaviour.js
blob: a476571334fba9bf261497124defaff686ab12e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
description("This test covers the behaviour of pattern use and construction");

function dataToArray(data) {
    var result = new Array(data.length)
    for (var i = 0; i < data.length; i++)
        result[i] = data[i];
    return result;
}

function getPixel(x, y) {
    var data = context.getImageData(x,y,1,1);
    if (!data) // getImageData failed, which should never happen
        return [-1,-1,-1,-1];
    return dataToArray(data.data);
}

function pixelShouldBe(x, y, colour) {
    shouldBe("getPixel(" + [x, y] +")", "["+colour+"]");
}

function createCanvasImage(width, height, colour) {
    var c = document.createElement("canvas");
    c.width = width;
    c.height = height;
    var context = c.getContext("2d");
    context.fillStyle = colour;
    context.fillRect(0,0,width,height);
    return c;
}


var green1x1 = createCanvasImage(1, 1, "green");
var green100x50 = createCanvasImage(100, 50, "green");

var canvas = document.createElement("canvas");
canvas.width = 100;
canvas.height = 50;
var context = canvas.getContext("2d");
var tests = [
    function () {
        var didThrow = false;
        try {
            var pattern = context.createPattern(green1x1, null);
        } catch (e) {
            didThrow = true;
            testFailed("context.createPattern(green1x1, null) threw exception "+e)
        }
        if (!didThrow)
            testPassed("context.createPattern(green1x1, null) did not throw an exception");

        context.fillStyle = pattern;
        context.fillRect(0, 0, 100, 50);
        pixelShouldBe(1,   1, [0,128,0,255]);
        pixelShouldBe(98,  1, [0,128,0,255]);
        pixelShouldBe(1,  48, [0,128,0,255]);
        pixelShouldBe(98, 48, [0,128,0,255]);
    },
    function () {
        shouldThrow("context.createPattern(green1x1, 'null')");
    },
    function () {
        shouldThrow("context.createPattern(green1x1, undefined)");
    },
    function () {
        shouldThrow("context.createPattern(green1x1, 'undefined')");
    },
    function () {
        shouldThrow("context.createPattern(green1x1, {toString:function(){ return null;}})");
    },
    function () {
        var didThrow = false;
        try {
            var pattern = context.createPattern(green1x1, '');
        } catch (e) {
            didThrow = true;
            testFailed("context.createPattern(green1x1, '') threw exception "+e)
        }
        if (!didThrow)
            testPassed("context.createPattern(green1x1, '') did not throw an exception");

        context.fillStyle = pattern;
        context.fillRect(0, 0, 100, 50);
        pixelShouldBe(1,   1, [0,128,0,255]);
        pixelShouldBe(98,  1, [0,128,0,255]);
        pixelShouldBe(1,  48, [0,128,0,255]);
        pixelShouldBe(98, 48, [0,128,0,255]);
    },
    function () {
        var didThrow = false;
        try {
            var pattern = context.createPattern(green1x1, {toString:function(){ return 'repeat';}});
        } catch (e) {
            didThrow = true;
            testFailed("context.createPattern(green1x1, {toString:function(){ return 'repeat';}}) threw exception "+e)
        }
        if (!didThrow)
            testPassed("context.createPattern(green1x1, {toString:function(){ return 'repeat';}}) did not throw an exception");

        context.fillStyle = pattern;
        context.fillRect(0, 0, 100, 50);
        pixelShouldBe(1,   1, [0,128,0,255]);
        pixelShouldBe(98,  1, [0,128,0,255]);
        pixelShouldBe(1,  48, [0,128,0,255]);
        pixelShouldBe(98, 48, [0,128,0,255]);
    },
    function () {
        context.fillStyle = "green";
        context.fillRect(0, 0, 50, 50);
        var pattern = context.createPattern(green100x50, "no-repeat");
        context.fillStyle = pattern;
        context.translate(50, 0);
        context.fillRect(-50, 0, 100, 50);
        pixelShouldBe(1,   1, [0,128,0,255]);
        pixelShouldBe(98,  1, [0,128,0,255]);
        pixelShouldBe(1,  48, [0,128,0,255]);
        pixelShouldBe(98, 48, [0,128,0,255]);
    },
];
for (var i = 0; i < tests.length; i++) {
    context.fillStyle="red";
    context.fillRect(0,0,100,50);
    tests[i]();
}