summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/eventsource/dedicated-worker/eventsource-constructor-url-bogus.js
blob: 2a450a346314dec2253a0641de81b81dfc6d78f5 (plain)
1
2
3
4
5
6
7
try {
  var source = new EventSource("http://this is invalid/")
  postMessage([false, 'no exception thrown'])
  source.close()
} catch(e) {
  postMessage([true, e.code])
}