summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/test_imagebitmap_close.html
blob: 0112e7f06596853c5e678ec4ebfe8288e44abf7b (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
<!DOCTYPE HTML>
<html>
<head>
<title>WebGL in OffscreenCanvas</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/WindowSnapshot.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
</head>
<body>
<script type="text/js-worker">
function ok(expect, msg) {
  postMessage({"type": "status", status: !!expect, msg: msg});
}

onmessage = function(event) {
  var bitmap = event.data.bitmap;
  ok(!!bitmap, "Get the ImageBitmap from the main script.");
  bitmap.close();
  ok(bitmap.width == 0 && bitmap.height == 0, "After close(), width and height should return 0");
  postMessage({"type": "finish"});
}
</script>
<script>

SimpleTest.waitForExplicitFinish();

function createCanvas() {
  var htmlCanvas = document.createElement('canvas');
  htmlCanvas.width = 64;
  htmlCanvas.height = 64;
  document.body.appendChild(htmlCanvas);
  return htmlCanvas;
}

function runTest() {
  var canvas1 = createCanvas();
  var ctx = canvas1.getContext("2d");
  ctx.fillStyle = "#00FF00";
  ctx.fillRect(0, 0, 64, 64);

  var canvasRef = createCanvas();
  var ctx = canvasRef.getContext("2d");
  ctx.fillStyle = "#00FF00";
  ctx.fillRect(0, 0, 64, 64);

  createImageBitmap(canvas1).then(function(bmp) {
    var canvas2 = createCanvas();
    var ctx2 = canvas2.getContext("2d");
    ctx2.drawImage(bmp, 0, 0);

    ok(canvasRef.toDataURL() == canvas2.toDataURL(), "toDataURL should return same result.");
    document.body.removeChild(canvas2);

    bmp.close();
    ok(bmp.width == 0 && bmp.height == 0, "After close(), width and height should return 0");
    var canvas2 = createCanvas();
    var ctx2 = canvas2.getContext("2d");
    var beforeDrawImageDataURL = canvas2.toDataURL();
    var _thrown = undefined; try {
      ctx2.drawImage(bmp, 0, 0);
    } catch (e) { _thrown = e };
    ok(_thrown && _thrown.name == "InvalidStateError" && _thrown.code == DOMException.INVALID_STATE_ERR, "should throw InvalidStateError");
    runTestOnWorker();
  });
}

function runTestOnWorker() {
  var canvas1 = createCanvas();
  var ctx = canvas1.getContext("2d");
  ctx.fillStyle = "#00FF00";
  ctx.fillRect(0, 0, 64, 64);

  var blob = new Blob(Array.prototype.map.call(document.querySelectorAll("script[type=\"text\/js-worker\"]"), function (oScript) { return oScript.textContent; }),{type: "text/javascript"});

  var worker = new Worker(window.URL.createObjectURL(blob));

  createImageBitmap(canvas1).then(function(bmp) {
    worker.postMessage({bitmap: bmp}, [bmp]);
    worker.onmessage = function(event) {
      if (event.data.type == "status") {
        ok(event.data.status, event.data.msg);
      } else if (event.data.type == "finish") {
        SimpleTest.finish();
      }
    }
  });
}

runTest();

</script>
</body>
</html>