mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 15:48:41 +00:00
8 lines
215 B
JavaScript
8 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()
|
|
})
|