blob: b0d0017dd25912f40038af102681dc7e74278500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// META: title=EventSource: addEventListener()
var test = async_test()
test.step(function() {
var source = new EventSource("resources/message.py")
source.addEventListener("message", listener, false)
})
function listener(e) {
test.step(function() {
assert_equals("data", e.data)
this.close()
}, this)
test.done()
}
|