Raw File
send-send.js
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()
})
back to top