summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/imagebitmap_bug1239752.js
blob: 42e84acddea6407258e234c0d1c7a48d7eba4d8f (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
var RGBAValues = [
  [42, 142, 23, 148],
  [234, 165, 177, 91],
  [74, 228, 75, 195],
  [140, 108, 73, 65],
  [25, 177, 3, 201],
  [127, 104, 12, 199],
  [196, 93, 240, 131],
  [250, 121, 231, 189],
  [175, 131, 215, 190],
  [145, 122, 166, 70],
  [18, 196, 210, 162],
  [225, 1, 90, 188],
  [223, 216, 182, 233],
  [115, 48, 168, 56],
  [50, 206, 198, 199],
  [152, 28, 70, 130],
  [176, 134, 133, 51],
  [148, 46, 43, 144],
  [78, 171, 141, 95],
  [24, 177, 102, 110],
  [0, 27, 127, 91],
  [31, 221, 41, 170],
  [85, 7, 218, 146],
  [65, 30, 198, 238],
  [121, 56, 123, 88],
  [246, 39, 140, 146],
  [174, 195, 254, 149],
  [29, 153, 92, 116],
  [17, 240, 5, 111],
  [38, 162, 84, 143],
  [237, 159, 201, 244],
  [93, 68, 14, 246],
  [143, 142, 82, 221],
  [187, 215, 243, 154],
  [24, 121, 220, 53],
  [80, 153, 151, 219],
  [202, 241, 250, 191],
];

function createOneTest(rgbaValue) {
  return new Promise(function (resolve, reject) {
    var tolerance = 5;
    var r = rgbaValue[0];
    var g = rgbaValue[1];
    var b = rgbaValue[2];
    var a = rgbaValue[3];
    var imageData = new ImageData(new Uint8ClampedArray([r, g, b, a]), 1, 1);

    var newImageData;
    createImageBitmap(imageData).then(
      function (imageBitmap) {
        var context = document.createElement("canvas").getContext("2d");
        context.drawImage(imageBitmap, 0, 0);
        newImageData = context.getImageData(0, 0, 1, 1);
        var newR = newImageData.data[0];
        var newG = newImageData.data[1];
        var newB = newImageData.data[2];
        var newA = newImageData.data[3];
        var isTheSame =
          Math.abs(r - newR) <= tolerance &&
          Math.abs(g - newG) <= tolerance &&
          Math.abs(b - newB) <= tolerance &&
          Math.abs(a - newA) <= tolerance;
        ok(
          isTheSame,
          "newImageData(" +
            newR +
            "," +
            newG +
            "," +
            newB +
            "," +
            newA +
            ") should equal to imageData(" +
            r +
            "," +
            g +
            "," +
            b +
            "," +
            a +
            ")." +
            "Premultiplied Alpha is handled while creating ImageBitmap from ImageData."
        );
        if (isTheSame) {
          resolve();
        } else {
          reject();
        }
      },
      function () {
        reject();
      }
    );
  });
}

function testBug1239752() {
  var tests = [];
  for (var i = 0; i < RGBAValues.length; ++i) {
    tests.push(createOneTest(RGBAValues[i]));
  }

  return Promise.all(tests);
}