mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-17 23:35:36 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
10 lines
412 B
Text
10 lines
412 B
Text
// https://html.spec.whatwg.org/multipage/infrastructure.html#plugin
|
|
[Exposed=Window, LegacyUnenumerableNamedProperties]
|
|
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);
|
|
};
|