Bug 1886946: Remove incorrect assertion that buffer is not-pinned. r=sfink
[gecko.git] / dom / webidl / InvokeEvent.webidl
blobf42eeb89faa91fda07c4ea385a0c9e25ed3d5293
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  *
6  * The origin of this IDL file is
7  * https://github.com/whatwg/html/pull/9841
8  */
10 [Pref="dom.element.invokers.enabled",
11  Exposed=Window]
12 interface InvokeEvent : Event {
13     constructor(DOMString type, optional InvokeEventInit eventInitDict = {});
14     readonly attribute Element? invoker;
15     readonly attribute DOMString action;
18 dictionary InvokeEventInit : EventInit {
19     Element? invoker = null;
20     DOMString action = "auto";