summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/infrastructure/safe-passing-of-structured-data/messagechannel.any.js
blob: 6ba17f7a89a07ef2cf13b16a39d140c5b90302b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// META: global=window,worker
// META: script=/common/sab.js
// META: script=/html/webappapis/structured-clone/structured-clone-battery-of-tests.js
// META: script=/html/webappapis/structured-clone/structured-clone-battery-of-tests-with-transferables.js
// META: script=/html/webappapis/structured-clone/structured-clone-battery-of-tests-harness.js

runStructuredCloneBatteryOfTests({
  structuredClone(data, transfer) {
    return new Promise(resolve => {
      const channel = new MessageChannel();
      channel.port2.onmessage = ev => resolve(ev.data.data);
      channel.port1.postMessage({data, transfer}, transfer);
    });
  },
  hasDocument : self.GLOBAL.isWindow()
});