mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
10 lines
313 B
Text
10 lines
313 B
Text
#import <HTML/Plugin.idl>
|
|
|
|
// https://html.spec.whatwg.org/#pluginarray
|
|
[Exposed=Window, LegacyUnenumerableNamedProperties]
|
|
interface PluginArray {
|
|
undefined refresh();
|
|
readonly attribute unsigned long length;
|
|
getter Plugin? item(unsigned long index);
|
|
getter Plugin? namedItem(DOMString name);
|
|
};
|