diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/event.ts | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/js/event.ts b/js/event.ts index 8cd4d22d3..dc39a3c83 100644 --- a/js/event.ts +++ b/js/event.ts @@ -91,20 +91,6 @@ export class Event implements domTypes.Event { return getPrivateValue(this, eventAttributes, "isTrusted"); } - set isTrusted(value) { - eventAttributes.set(this, { - type: this.type, - bubbles: this.bubbles, - cancelable: this.cancelable, - composed: this.composed, - currentTarget: this.currentTarget, - eventPhase: this.eventPhase, - isTrusted: value, - target: this.target, - timeStamp: this.timeStamp - }); - } - get target(): domTypes.EventTarget { return getPrivateValue(this, eventAttributes, "target"); } |