mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 10:33:33 +00:00
First Checked In.
This commit is contained in:
parent
eb551ad681
commit
c81f1f5350
8
dom/public/idl/base/MimeType.idl
Normal file
8
dom/public/idl/base/MimeType.idl
Normal file
@ -0,0 +1,8 @@
|
||||
interface MimeType {
|
||||
/* IID: { 0xf6134682, 0xf28b, 0x11d2, { 0x83, 0x60, 0xc9, 0x08, 0x99, 0x04, 0x9c, 0x3c } } */
|
||||
|
||||
readonly attribute DOMString description;
|
||||
readonly attribute Plugin enabledPlugin;
|
||||
readonly attribute DOMString suffixes;
|
||||
readonly attribute DOMString type;
|
||||
};
|
7
dom/public/idl/base/MimeTypeArray.idl
Normal file
7
dom/public/idl/base/MimeTypeArray.idl
Normal file
@ -0,0 +1,7 @@
|
||||
interface MimeTypeArray {
|
||||
/* IID: { 0xf6134683, 0xf28b, 0x11d2, { 0x83, 0x60, 0xc9, 0x08, 0x99, 0x04, 0x9c, 0x3c } } */
|
||||
|
||||
readonly attribute unsigned long length;
|
||||
MimeType item(in unsigned long index);
|
||||
MimeType namedItem(in DOMString name);
|
||||
};
|
12
dom/public/idl/base/Plugin.idl
Normal file
12
dom/public/idl/base/Plugin.idl
Normal file
@ -0,0 +1,12 @@
|
||||
interface Plugin {
|
||||
/* IID: { 0xf6134681, 0xf28b, 0x11d2, { 0x83, 0x60, 0xc9, 0x08, 0x99, 0x04, 0x9c, 0x3c } } */
|
||||
|
||||
readonly attribute DOMString description;
|
||||
readonly attribute DOMString filename;
|
||||
readonly attribute DOMString name;
|
||||
|
||||
|
||||
readonly attribute unsigned long length;
|
||||
MimeType item(in unsigned long index);
|
||||
MimeType namedItem(in DOMString name);
|
||||
};
|
8
dom/public/idl/base/PluginArray.idl
Normal file
8
dom/public/idl/base/PluginArray.idl
Normal file
@ -0,0 +1,8 @@
|
||||
interface PluginArray {
|
||||
/* IID: { 0xf6134680, 0xf28b, 0x11d2, { 0x83, 0x60, 0xc9, 0x08, 0x99, 0x04, 0x9c, 0x3c } } */
|
||||
|
||||
readonly attribute unsigned long length;
|
||||
Plugin item(in unsigned long index);
|
||||
Plugin namedItem(in DOMString name);
|
||||
void refresh(in boolean reloadDocuments);
|
||||
};
|
Loading…
Reference in New Issue
Block a user