From 7e6d4f35a5e087aee374c05386f3d2e9c3d56809 Mon Sep 17 00:00:00 2001 From: Tim van der Lippe Date: Sat, 9 Nov 2019 10:34:10 -0800 Subject: [PATCH] Make eventInitDict argument of FormDataEvent constructor required Fixes #5064 --- source | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source b/source index a799451dbb2..5d2e5aec293 100644 --- a/source +++ b/source @@ -57117,9 +57117,10 @@ dictionary SubmitEventInit : EventInit {
The FormDataEvent interface
-
[Exposed=Window,
- Constructor(DOMString type, optional FormDataEventInit eventInitDict = {})]
+  
[Exposed=Window]
 interface FormDataEvent : Event {
+  constructor(DOMString type, FormDataEventInit eventInitDict);
+
   readonly attribute FormData formData;
 };