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 e478a33a729..5160a396081 100644 --- a/components/script/dom/webidls/FormDataEvent.webidl +++ b/components/script/dom/webidls/FormDataEvent.webidl @@ -3,9 +3,9 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // https://html.spec.whatwg.org/multipage/#the-formdataevent-interface -[Exposed=Window, - Constructor(DOMString type, optional FormDataEventInit eventInitDict = {})] +[Exposed=Window] interface FormDataEvent : Event { + [Throws] constructor(DOMString type, optional FormDataEventInit eventInitDict = {}); readonly attribute FormData formData; }; |