Skip to content

Commit

Permalink
Fix IDL for event handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
domenic committed Mar 3, 2021
1 parent b2e3052 commit 400af68
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1046,9 +1046,9 @@ interface AppHistory : EventTarget {
Promise<undefined> back();
Promise<undefined> forward();
readonly attribute EventHandler onnavigate;
readonly attribute EventHandler onupcomingnavigate;
readonly attribute EventHandler oncurrentchange;
attribute EventHandler onnavigate;
attribute EventHandler onupcomingnavigate;
attribute EventHandler oncurrentchange;
};
[Exposed=Window]
Expand All @@ -1057,9 +1057,9 @@ interface AppHistoryEntry : EventTarget {
readonly attribute USVString url;
readonly attribute any state;
readonly attribute EventHandler onnavigateto;
readonly attribute EventHandler onnavigatefrom;
readonly attribute EventHandler ondispose;
attribute EventHandler onnavigateto;
attribute EventHandler onnavigatefrom;
attribute EventHandler ondispose;
};
dictionary AppHistoryEntryOptions {
Expand Down

0 comments on commit 400af68

Please sign in to comment.