Skip to content

Update to WHATWG DOM Living Standard for Events #413

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .paket/paket.bootstrapper.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ interface ErrorEventInit extends EventInit {
interface EventInit {
bubbles?: boolean;
cancelable?: boolean;
scoped?: boolean;
composed?: boolean;
}

interface EventListenerOptions {
Expand Down Expand Up @@ -4587,12 +4587,12 @@ interface Event {
readonly bubbles: boolean;
cancelBubble: boolean;
readonly cancelable: boolean;
readonly composed: boolean;
readonly currentTarget: EventTarget | null;
readonly defaultPrevented: boolean;
readonly eventPhase: number;
readonly isTrusted: boolean;
returnValue: boolean;
readonly scoped: boolean;
readonly srcElement: Element | null;
readonly target: EventTarget | null;
readonly timeStamp: number;
Expand Down
4 changes: 2 additions & 2 deletions baselines/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ interface ErrorEventInit extends EventInit {
interface EventInit {
bubbles?: boolean;
cancelable?: boolean;
scoped?: boolean;
composed?: boolean;
}

interface EventListenerOptions {
Expand Down Expand Up @@ -464,12 +464,12 @@ interface Event {
readonly bubbles: boolean;
cancelBubble: boolean;
readonly cancelable: boolean;
readonly composed: boolean;
readonly currentTarget: EventTarget | null;
readonly defaultPrevented: boolean;
readonly eventPhase: number;
readonly isTrusted: boolean;
returnValue: boolean;
readonly scoped: boolean;
readonly srcElement: object | null;
readonly target: EventTarget | null;
readonly timeStamp: number;
Expand Down
8 changes: 4 additions & 4 deletions inputfiles/addedTypes.json
Original file line number Diff line number Diff line change
Expand Up @@ -1320,8 +1320,8 @@
"name": "Event",
"properties": {
"property": {
"scoped": {
"name": "scoped",
"composed": {
"name": "composed",
"read-only": 1,
"override-type": "boolean"
}
Expand Down Expand Up @@ -2883,8 +2883,8 @@
"name": "EventInit",
"members": {
"member": {
"scoped": {
"name": "scoped",
"composed": {
"name": "composed",
"override-type": "boolean",
"required": 0
}
Expand Down