mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
9 lines
329 B
Plaintext
9 lines
329 B
Plaintext
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);
|
|
};
|