diff --git a/js/event.ts b/js/event.ts index 8cd4d22d31..dc39a3c83e 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"); }