mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01: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()
|
|
})
|