| Index: Source/core/dom/SomeDictionary.idl
|
| diff --git a/Source/core/dom/SomeDictionary.idl b/Source/core/dom/SomeDictionary.idl
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..49d7849b106c0c2b2b07d56032192830ceaf70ea
|
| --- /dev/null
|
| +++ b/Source/core/dom/SomeDictionary.idl
|
| @@ -0,0 +1,10 @@
|
| +// NOT FOR LAND -- this is an example of IDL dictionary.
|
| +
|
| +[
|
| + GarbageCollected
|
| +] dictionary SomeDictionary {
|
| + long a; // Example of a primitive member
|
| + long b = 2; // Example of a primitive member with default value
|
| + DOMString stringMember = "doraemon"; // Example of a string member
|
| + Element element = null; // Example of an interface member
|
| +};
|
|
|