diff options
Diffstat (limited to 'components/script/dom/webidls/FormDataEvent.webidl')
-rw-r--r-- | components/script/dom/webidls/FormDataEvent.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/webidls/FormDataEvent.webidl b/components/script/dom/webidls/FormDataEvent.webidl index 5160a396081..0cb81b93962 100644 --- a/components/script/dom/webidls/FormDataEvent.webidl +++ b/components/script/dom/webidls/FormDataEvent.webidl @@ -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; }; |