summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/interfaces/DedicatedWorkerGlobalScope/postMessage/structured-clone-imagedata.html
blob: c0ded6a280510c6db6b60ff513aa7318ab77d5bd (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
<!--
onmessage = function(e) {
  var imagedata = e.data;
  imagedata.data[0] = 128;
  postMessage(imagedata);
}

/*
-->
<!doctype html>
<title>structured clone of ImageData</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
(async_test()).step(function() {
  var worker = new Worker('#');
  var ctx = document.createElement('canvas').getContext('2d');
  var imagedata = ctx.getImageData(0, 0, 300, 150);
  worker.postMessage(imagedata);
  worker.onmessage = this.step_func(function(e) {
    assert_equals(''+e.data, '[object ImageData]');
    assert_equals(e.data.data[0], 128);
    this.done();
  });
});
</script>
<!--
*/
//-->