35 lines
1.3 KiB
JavaScript
35 lines
1.3 KiB
JavaScript
'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_message_port_test(
|
|
t, root_dir, /*target=*/ child_window, /*target_origin=*/ '*');
|
|
},
|
|
'Send and receive messages using a message port in 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_message_port_test(
|
|
t, root_dir, /*target=*/ child_window, /*target_origin=*/ '*');
|
|
}, 'Send and receive messages using a message port in 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_message_port_test(
|
|
t, root_dir, /*target=*/ child_window, /*target_origin=*/ '*');
|
|
},
|
|
'Send and receive messages using a message port in a sandboxed same ' +
|
|
'origin window.');
|