blob: 11cf48beed9abda7d44816918364982ba1eb8824 [file] [log] [blame]
// 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");