Sign in
chromium
/
external
/
w3c
/
web-platform-tests.git
/
HEAD
/
.
/
xhr
/
formdata
/
constructor.any.js
blob: 43704538ab2489a6cbd7a2449532a040fdb4adbd [
file
] [
log
] [
blame
]
// META: title=FormData: constructor
test
(()
=>
{
assert_throws_js
(
TypeError
,
()
=>
{
new
FormData
(
null
);
});
assert_throws_js
(
TypeError
,
()
=>
{
new
FormData
(
"string"
);
});
},
"Constructors should throw a type error"
);