mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
13 lines
272 B
Plaintext
13 lines
272 B
Plaintext
interface PluginTag;
|
|
|
|
[Constructor(DOMString type, optional HiddenPluginEventInit eventInit), ChromeOnly]
|
|
interface HiddenPluginEvent : Event
|
|
{
|
|
readonly attribute PluginTag? tag;
|
|
};
|
|
|
|
dictionary HiddenPluginEventInit : EventInit
|
|
{
|
|
PluginTag? tag = null;
|
|
};
|