blob: 1cbe98ba470bbc60c55b2098584b89505af941ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
var xhr = new XMLHttpRequest();
var log = '';
xhr.onreadystatechange = function(e) {
if (this.readyState == 4) {
if (this.responseXML != null)
log += 'responseXML was not null. ';
if (this.responseText != '<x>foo</x>')
log += 'responseText was ' + this.responseText + ', expected <x>foo</x>. ';
postMessage(log);
}
}
xhr.open('GET', '001-1.xml', true);
xhr.send();
|