| 143 | } |
| 144 | |
| 145 | export class ClipboardEvent extends Event { |
| 146 | constructor(type, init) { |
| 147 | super(type, {...init, bubbles: true, cancelable: true, composed: true}); |
| 148 | this.clipboardData = init.clipboardData; |
nothing calls this directly
no outgoing calls
no test coverage detected