mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-08 14:03:49 +00:00
19251f27ce
`= {}` can now be used to indicate that an optional dictionary should have the default value of 'default-initialized dictionary' Differential Revision: https://phabricator.services.mozilla.com/D36504 --HG-- extra : moz-landing-system : lando
13 lines
277 B
Plaintext
13 lines
277 B
Plaintext
interface PluginTag;
|
|
|
|
[Constructor(DOMString type, optional HiddenPluginEventInit eventInit = {}), ChromeOnly]
|
|
interface HiddenPluginEvent : Event
|
|
{
|
|
readonly attribute PluginTag? tag;
|
|
};
|
|
|
|
dictionary HiddenPluginEventInit : EventInit
|
|
{
|
|
PluginTag? tag = null;
|
|
};
|