Chromium Code Reviews| Index: Source/bindings/tests/idls/TestDictionary.idl |
| diff --git a/Source/bindings/tests/idls/TestDictionary.idl b/Source/bindings/tests/idls/TestDictionary.idl |
| index 3837db23e00eb292f6bd7d809d212eb3a2c9a80c..129355b7176d2398ba316f4a4f95ea923fd423d9 100644 |
| --- a/Source/bindings/tests/idls/TestDictionary.idl |
| +++ b/Source/bindings/tests/idls/TestDictionary.idl |
| @@ -11,4 +11,6 @@ |
| double? doubleOrNullMember = null; |
| DOMString? stringOrNullMember = "default string value"; |
| TestInterface? testInterfaceOrNullMember; |
|
haraken
2014/07/27 07:46:36
Would you add test cases for:
TestInterfaceGarbag
bashi
2014/07/29 03:52:51
Done.
|
| + DOMString[] stringArrayMember; |
| + sequence<DOMString> stringSequenceMember; |
|
haraken
2014/07/27 07:46:36
Just help me understand: What's the difference bet
bashi
2014/07/29 03:52:51
In terms of the spec, sequence<T> is passed by val
|
| }; |