tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

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");