Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /xhr/formdata/constructor.any.html - WPT Dashboard Interop Dashboard
- /xhr/formdata/constructor.any.worker.html - WPT Dashboard Interop Dashboard
// 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");