// META: title=MessagePort message events are trusted with window
async_test(t => {
window.onmessage = t.step_func_done(e => {
assert_equals(e.isTrusted, true);
});
window.postMessage("ping", "*");
}, "With window");
// META: title=MessagePort message events are trusted with window
async_test(t => {
window.onmessage = t.step_func_done(e => {
assert_equals(e.isTrusted, true);
});
window.postMessage("ping", "*");
}, "With window");