Source code
Revision control
Copy as Markdown
Other Tools
/* Any copyright is dedicated to the Public Domain.
function sameSourceDistinctThread() {
console.log("same source distinct thread");
}
addEventListener("click", sameSourceDistinctThread);
addEventListener("message", sameSourceDistinctThread);