Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /webmessaging/MessageEvent-trusted.window.html - WPT Dashboard Interop Dashboard
// 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");