mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02: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()
|
|
})
|