Sign in
webkit
/
WebKit
/
240d017fb55958095e34f5bd1d9c5532e9fae1ef
/
.
/
LayoutTests
/
imported
/
w3c
/
web-platform-tests
/
XMLHttpRequest
/
send-send.js
blob: 2e7fe865f3b21c56c4eb91bc468b4d3907455911 [
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
()
})