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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>XMLHttpRequest.responseType</title>
<link rel="author" title="Mathias Bynens" href="http://mathiasbynens.be/">
<link rel="author" title="Ms2ger" href="mailto:Ms2ger@gmail.com">
<link rel="help" href="https://xhr.spec.whatwg.org/#the-responsetype-attribute">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
test(function() {
var xhr = new XMLHttpRequest();
assert_equals(xhr.responseType, '');
}, 'Initial value of responseType');
var types = ['', 'json', 'document', 'arraybuffer', 'blob', 'text'];
types.forEach(function(type) {
test(function() {
var xhr = new XMLHttpRequest();
xhr.responseType = type;
assert_equals(xhr.responseType, type);
}, 'Set responseType to ' + format_value(type) + ' when readyState is UNSENT.');
test(function() {
var xhr = new XMLHttpRequest();
xhr.open('get', '/');
xhr.responseType = type;
assert_equals(xhr.responseType, type);
}, 'Set responseType to ' + format_value(type) + ' when readyState is OPENED.');
async_test(function() {
var xhr = new XMLHttpRequest();
xhr.open('get', '/');
xhr.onreadystatechange = this.step_func(function() {
if (xhr.readyState === XMLHttpRequest.HEADERS_RECEIVED) {
xhr.responseType = type;
assert_equals(xhr.responseType, type);
this.done();
}
});
xhr.send();
}, 'Set responseType to ' + format_value(type) + ' when readyState is HEADERS_RECEIVED.');
async_test(function() {
var xhr = new XMLHttpRequest();
xhr.open('get', '/');
xhr.onreadystatechange = this.step_func(function() {
if (xhr.readyState === XMLHttpRequest.LOADING) {
assert_throws("InvalidStateError", function() {
xhr.responseType = type;
});
assert_equals(xhr.responseType, "");
this.done();
}
});
xhr.send();
}, 'Set responseType to ' + format_value(type) + ' when readyState is LOADING.');
async_test(function() {
var xhr = new XMLHttpRequest();
xhr.open('get', '/');
xhr.onreadystatechange = this.step_func(function() {
if (xhr.readyState === XMLHttpRequest.DONE) {
assert_throws("InvalidStateError", function() {
xhr.responseType = type;
});
assert_equals(xhr.responseType, "");
this.done();
}
});
xhr.send();
}, 'Set responseType to ' + format_value(type) + ' when readyState is DONE.');
// Note: the case of setting responseType first, and then calling synchronous
// open(), is tested in open-method-responsetype-set-sync.htm.
test(function() {
var xhr = new XMLHttpRequest();
xhr.open('get', '/', false);
assert_throws("InvalidAccessError", function() {
xhr.responseType = type;
});
assert_equals(xhr.responseType, "");
}, 'Set responseType to ' + format_value(type) + ' when readyState is OPENED and the sync flag is set.');
test(function() {
var xhr = new XMLHttpRequest();
xhr.open('get', '/', false);
xhr.send();
assert_equals(xhr.readyState, XMLHttpRequest.DONE);
assert_throws("InvalidStateError", function() {
xhr.responseType = type;
});
assert_equals(xhr.responseType, "");
}, 'Set responseType to ' + format_value(type) + ' when readyState is DONE and the sync flag is set.');
});
</script>
|