mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 09:23:07 +09:00
12 lines
260 B
Text
12 lines
260 B
Text
interface PluginTag;
|
|
|
|
[Constructor(DOMString type, optional HiddenPluginEventInit eventInit), ChromeOnly]
|
|
interface HiddenPluginEvent : Event
|
|
{
|
|
readonly attribute PluginTag? tag;
|
|
};
|
|
|
|
dictionary HiddenPluginEventInit : EventInit
|
|
{
|
|
PluginTag? tag = null;
|
|
};
|