2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-12-11 22:09:56 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* http://xhr.spec.whatwg.org
|
|
|
|
*/
|
|
|
|
|
2016-07-14 10:01:31 +03:00
|
|
|
typedef (Blob or Directory or USVString) FormDataEntryValue;
|
2015-01-29 04:04:28 +03:00
|
|
|
|
2015-01-28 02:16:21 +03:00
|
|
|
[Constructor(optional HTMLFormElement form),
|
|
|
|
Exposed=(Window,Worker)]
|
2012-12-11 22:09:56 +04:00
|
|
|
interface FormData {
|
2015-12-05 00:15:46 +03:00
|
|
|
[Throws]
|
2015-01-29 04:04:28 +03:00
|
|
|
void append(USVString name, Blob value, optional USVString filename);
|
2015-12-05 00:15:46 +03:00
|
|
|
[Throws]
|
2015-01-29 04:04:28 +03:00
|
|
|
void append(USVString name, USVString value);
|
|
|
|
void delete(USVString name);
|
|
|
|
FormDataEntryValue? get(USVString name);
|
|
|
|
sequence<FormDataEntryValue> getAll(USVString name);
|
|
|
|
boolean has(USVString name);
|
2015-12-05 00:15:46 +03:00
|
|
|
[Throws]
|
2015-01-29 04:04:28 +03:00
|
|
|
void set(USVString name, Blob value, optional USVString filename);
|
2015-12-05 00:15:46 +03:00
|
|
|
[Throws]
|
2015-01-29 04:04:28 +03:00
|
|
|
void set(USVString name, USVString value);
|
2015-10-20 05:06:00 +03:00
|
|
|
iterable<USVString, FormDataEntryValue>;
|
2013-06-19 18:24:37 +04:00
|
|
|
};
|