blob: bd722df1982be1ce8d8f336a0669330b5378cf92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
interface PluginTag;
[ChromeOnly,
Exposed=Window]
interface HiddenPluginEvent : Event
{
constructor(DOMString type, optional HiddenPluginEventInit eventInit = {});
readonly attribute PluginTag? tag;
};
dictionary HiddenPluginEventInit : EventInit
{
PluginTag? tag = null;
};
|