chromium/third_party/blink/web_tests/external/wpt/eventsource/dedicated-worker/eventsource-constructor-no-new.any.js

test(function() {
  assert_throws_js(TypeError,
  function() {
    EventSource('');
  },
  "Calling EventSource constructor without 'new' must throw");
})