constructor.any.js (225B)
1 // META: title=FormData: constructor 2 3 test(() => { 4 assert_throws_js(TypeError, () => { new FormData(null); }); 5 assert_throws_js(TypeError, () => { new FormData("string"); }); 6 }, "Constructors should throw a type error");