summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fs/script-tests/FileSystemBaseHandle-postMessage-windows.js
blob: 798d458534ef5413c9d3d8e57583bb40fc5b91e5 (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
'use strict';

// This script depends on the following scripts:
//    /fs/resources/messaging-helpers.js
//    /fs/resources/messaging-blob-helpers.js
//    /fs/resources/messaging-serialize-helpers.js
//    /fs/resources/test-helpers.js

directory_test(async (t, root_dir) => {
  const child_window = await open_window(t, kDocumentMessageTarget);
  await do_post_message_test(
      t, root_dir, /*receiver=*/ self, /*target=*/ child_window,
      /*target_origin=*/ '*');
}, 'Send and receive messages using a same origin window.');

directory_test(async (t, root_dir) => {
  const blob_url = await create_message_target_blob_url(t);
  const child_window = await open_window(t, blob_url);
  await do_post_message_test(
      t, root_dir, /*receiver=*/ self, /*target=*/ child_window,
      /*target_origin=*/ '*');
}, 'Send and receive messages using a blob window.');

directory_test(async (t, root_dir) => {
  const url = `${kDocumentMessageTarget}?pipe=header(Content-Security-Policy` +
      ', sandbox allow-scripts allow-same-origin)';
  const child_window = await open_window(t, url);
  await do_post_message_test(
      t, root_dir, /*receiver=*/ self, /*target=*/ child_window,
      /*target_origin=*/ '*');
}, 'Send and receive messages using a sandboxed same origin window.');