gecko-dev/dom/webidl/HiddenPluginEvent.webidl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 строки
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;
};