| Index: Source/core/testing/InternalDictionary.idl
|
| diff --git a/Source/core/testing/InternalDictionary.idl b/Source/core/testing/InternalDictionary.idl
|
| index 672afe4b87b145c1c056c57d3bde2c7322ec2cbe..f7feaf34f9bac9b41be6928d6b4a74cbaf48baef 100644
|
| --- a/Source/core/testing/InternalDictionary.idl
|
| +++ b/Source/core/testing/InternalDictionary.idl
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +enum InternalEnum { "foo", "bar", "baz" };
|
| +
|
| [
|
| GarbageCollected
|
| ] dictionary InternalDictionary {
|
| @@ -15,6 +17,9 @@
|
| DOMString stringMemberWithDefault = "defaultStringValue";
|
| sequence<DOMString> stringSequenceMember;
|
| sequence<DOMString>? stringSequenceOrNullMember;
|
| + InternalEnum enumMember;
|
| + InternalEnum enumMemberWithDefault = "foo";
|
| + InternalEnum? enumOrNullMember;
|
| Element elementMember;
|
| Element? elementOrNullMember;
|
| };
|
|
|