| Index: Source/core/testing/InternalDictionary.idl
|
| diff --git a/Source/core/testing/InternalDictionary.idl b/Source/core/testing/InternalDictionary.idl
|
| index cd1e185465c1bbb117322cf9bf2159492c0948c7..17d38a2233bd8281b32289a7d073787ec413a246 100644
|
| --- a/Source/core/testing/InternalDictionary.idl
|
| +++ b/Source/core/testing/InternalDictionary.idl
|
| @@ -4,7 +4,9 @@
|
|
|
| enum InternalEnum { "foo", "bar", "baz" };
|
|
|
| -dictionary InternalDictionary {
|
| +[
|
| + TypeChecking=Unrestricted,
|
| +] dictionary InternalDictionary {
|
| long longMember;
|
| [Clamp] long longMemberWithClamp;
|
| [EnforceRange] long longMemberWithEnforceRange;
|
| @@ -15,6 +17,7 @@ dictionary InternalDictionary {
|
| long? longOrNullMemberWithDefault = null;
|
| boolean booleanMember;
|
| double doubleMember;
|
| + unrestricted double unrestrictedDoubleMember;
|
| DOMString stringMember;
|
| DOMString stringMemberWithDefault = "defaultStringValue";
|
| ByteString byteStringMember;
|
|
|