mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Require FormDataEventInit dictionary
This commit is contained in:
parent
3a21261f69
commit
94565c4088
3 changed files with 4 additions and 16 deletions
|
@ -5,10 +5,10 @@
|
|||
// https://html.spec.whatwg.org/multipage/#the-formdataevent-interface
|
||||
[Exposed=Window]
|
||||
interface FormDataEvent : Event {
|
||||
[Throws] constructor(DOMString type, optional FormDataEventInit eventInitDict = {});
|
||||
[Throws] constructor(DOMString type, FormDataEventInit eventInitDict);
|
||||
readonly attribute FormData formData;
|
||||
};
|
||||
|
||||
dictionary FormDataEventInit : EventInit {
|
||||
/*required*/ FormData formData;
|
||||
required FormData formData;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue