summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/eventsource/format-utf-8.any.js
blob: 7976abfb55df193e3fe2b3d2316b7084190aa804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// META: title=EventSource always UTF-8
async_test().step(function() {
  var source = new EventSource("resources/message.py?mime=text/event-stream%3bcharset=windows-1252&message=data%3Aok%E2%80%A6")
  source.onmessage = this.step_func(function(e) {
    assert_equals('ok…', e.data, 'decoded data')
    source.close()
    this.done()
  })
  source.onerror = this.step_func(function() {
    assert_unreached("Got error event")
  })
})