2023-02-27 21:23:53 -03:00
|
|
|
#import <HTML/Plugin.idl>
|
|
|
|
|
|
2025-02-04 09:01:46 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/system-state.html#pluginarray
|
2023-09-02 11:00:01 -03:00
|
|
|
[Exposed=Window, LegacyUnenumerableNamedProperties]
|
2023-02-27 21:23:53 -03:00
|
|
|
interface PluginArray {
|
|
|
|
|
undefined refresh();
|
|
|
|
|
readonly attribute unsigned long length;
|
|
|
|
|
getter Plugin? item(unsigned long index);
|
|
|
|
|
getter Plugin? namedItem(DOMString name);
|
|
|
|
|
};
|