mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
11 lines
270 B
Plaintext
11 lines
270 B
Plaintext
|
#include "nsISupports.idl"
|
||
|
|
||
|
interface nsIDOMFontFace;
|
||
|
|
||
|
[scriptable, uuid(2538579c-9472-4fd9-8dc1-d44ce4c1b7ba)]
|
||
|
interface nsIDOMFontFaceList : nsISupports
|
||
|
{
|
||
|
nsIDOMFontFace item(in unsigned long index);
|
||
|
readonly attribute unsigned long length;
|
||
|
};
|