mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-08 20:28:42 +02:00
7 lines
215 B
JavaScript
7 lines
215 B
JavaScript
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()
|
|
})
|