1
0
Fork 0
firefox/testing/web-platform/tests/eventsource/format-utf-8.any.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

12 lines
435 B
JavaScript

// 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")
})
})