blob: d881a4ddd2781e811040fd48cde0b6041f489218 (
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
28
29
30
31
32
33
34
35
36
37
38
39
|
<!DOCTYPE html>
<html>
<head>
<title>EventSource: incorrect HTTP status code</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>
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")
</script>
</body>
</html>
|