chromium/third_party/blink/web_tests/external/wpt/workers/interfaces/WorkerGlobalScope/onerror/handled.js

onerror = function(a, b, c, d) {
  postMessage([a, b, c, d]);
  return true; // the error is "handled"
}
function x() {
  y();
}
x();