1
0
Fork 0
firefox/testing/web-platform/tests/eventsource/format-bom.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

24 lines
711 B
JavaScript

// META: title=EventSource: BOM
var test = async_test(),
hasbeenone = false,
hasbeentwo = false
test.step(function() {
var source = new EventSource("resources/message.py?message=%EF%BB%BFdata%3A1%0A%0A%EF%BB%BFdata%3A2%0A%0Adata%3A3")
source.addEventListener("message", listener, false)
})
function listener(e) {
test.step(function() {
if(e.data == "1")
hasbeenone = true
if(e.data == "2")
hasbeentwo = true
if(e.data == "3") {
assert_true(hasbeenone)
assert_false(hasbeentwo)
this.close()
test.done()
}
}, this)
}