blob: 8632d8e8c6b5ac091e1e59f20fb2709a2b089da9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// META: title=EventSource: incorrect HTTP status code
function statusTest(status) {
var test = async_test(document.title + " (" + status +")")
test.step(function() {
var source = new EventSource("resources/status-error.py?status=" + status)
source.onmessage = function() {
test.step(function() {
assert_unreached()
})
test.done()
}
source.onerror = function() {
test.step(function() {
assert_equals(this.readyState, this.CLOSED)
}, this)
test.done()
}
})
}
statusTest("204")
statusTest("205")
statusTest("210")
statusTest("299")
statusTest("404")
statusTest("410")
statusTest("503")
|