Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2886)

Unified Diff: Source/core/testing/InternalDictionary.idl

Issue 966643002: Add [TypeChecking=Unrestricted] to InternalDictionary (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix test expectations Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/testing/DictionaryTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/testing/DictionaryTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698