mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-29 01:55:01 +00:00
14 lines
292 B
Plaintext
14 lines
292 B
Plaintext
// invalid widl
|
|
// interface PluginTag;
|
|
|
|
[Constructor(DOMString type, optional HiddenPluginEventInit eventInit), ChromeOnly]
|
|
interface HiddenPluginEvent : Event
|
|
{
|
|
readonly attribute PluginTag? tag;
|
|
};
|
|
|
|
dictionary HiddenPluginEventInit : EventInit
|
|
{
|
|
PluginTag? tag = null;
|
|
};
|