tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

send-send.any.js (255B)


      1 test(function() {
      2  var client = new XMLHttpRequest()
      3  client.open("GET", "resources/well-formed.xml")
      4  client.send(null)
      5  assert_throws_dom("InvalidStateError", function() { client.send(null) })
      6  client.abort()
      7 }, "XMLHttpRequest: send() - send()");