Revision 826375a734caf3cbe9b757ca69dbef9d578aa76d authored by Robert Ma on 26 March 2018, 20:24:51 UTC, committed by GitHub on 26 March 2018, 20:24:51 UTC
1 parent 7988e17
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