blob: 0ddfd9b32bb2c9fb7416198fa4c54a058abe681a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// META: title=EventSource: leading space
var test = async_test()
test.step(function() {
var source = new EventSource("resources/message.py?message=data%3A%09test%0Ddata%3A%20%0Adata%3Atest")
source.onmessage = function(e) {
test.step(function() {
assert_equals("\ttest\n\ntest", e.data)
source.close()
})
test.done()
}
})
// also used a CR as newline once
|