mirror of
https://github.com/servo/servo.git
synced 2025-10-15 07:50:20 +01:00
7 lines
255 B
JavaScript
7 lines
255 B
JavaScript
test(function() {
|
|
var client = new XMLHttpRequest()
|
|
client.open("GET", "resources/well-formed.xml")
|
|
client.send(null)
|
|
assert_throws_dom("InvalidStateError", function() { client.send(null) })
|
|
client.abort()
|
|
}, "XMLHttpRequest: send() - send()");
|