Sign in
webkit
/
WebKit
/
40be324278b5482d3e269eac31053c809471d8b4
/
.
/
LayoutTests
/
imported
/
w3c
/
web-platform-tests
/
xhr
/
send-send.any.js
blob: 2bfe40436f4a6ba8c3adc152c186a7b6d272b114 [
file
] [
log
] [
blame
]
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
()
},
"XMLHttpRequest: send() - send()"
);