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