Skip to content

Commit

Permalink
Update interfaces/html.idl
Browse files Browse the repository at this point in the history
  • Loading branch information
autofoolip committed Nov 20, 2019
1 parent 295f22b commit a129f4d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions interfaces/html.idl
Original file line number Diff line number Diff line change
Expand Up @@ -1166,9 +1166,10 @@ dictionary SubmitEventInit : EventInit {
HTMLElement? submitter = null;
};

[Exposed=Window,
Constructor(DOMString type, optional FormDataEventInit eventInitDict = {})]
[Exposed=Window]
interface FormDataEvent : Event {
constructor(DOMString type, FormDataEventInit eventInitDict);

readonly attribute FormData formData;
};

Expand Down Expand Up @@ -2011,8 +2012,8 @@ interface mixin NavigatorLanguage {
};

interface mixin NavigatorContentUtils {
void registerProtocolHandler(DOMString scheme, USVString url, DOMString title);
void unregisterProtocolHandler(DOMString scheme, USVString url);
[SecureContext] void registerProtocolHandler(DOMString scheme, USVString url, DOMString title);
[SecureContext] void unregisterProtocolHandler(DOMString scheme, USVString url);
};

interface mixin NavigatorCookies {
Expand Down

0 comments on commit a129f4d

Please sign in to comment.