MimeType.idl 283 B

12345678910
  1. #import <HTML/Plugin.idl>
  2. // https://html.spec.whatwg.org/#mimetype
  3. [Exposed=Window]
  4. interface MimeType {
  5. readonly attribute DOMString type;
  6. readonly attribute DOMString description;
  7. readonly attribute DOMString suffixes;
  8. readonly attribute Plugin enabledPlugin;
  9. };