blob: 62f7398b82735670809610de90ad2f91a9dde06e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
interface mixin InvokerElement {
[CEReactions,Reflect=invoketarget] attribute Element? invokeTargetElement;
[CEReactions,Reflect,ReflectMissing="auto",ReflectEmpty="auto"] attribute DOMString invokeAction;
};
interface InvokeEvent : Event {
constructor(DOMString type, optional InvokeEventInit eventInitDict = {});
readonly attribute Element? invoker;
readonly attribute DOMString action;
};
dictionary InvokeEventInit : EventInit {
Element? invoker = null;
DOMString action = "auto";
};
|