blob: 2bfe40436f4a6ba8c3adc152c186a7b6d272b114 [file] [log] [blame]
test(function() {
var client = new XMLHttpRequest()
client.open("GET", "resources/well-formed.xml")
client.send(null)
assert_throws("InvalidStateError", function() { client.send(null) })
client.abort()
}, "XMLHttpRequest: send() - send()");