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

Side by Side Diff: Source/bindings/tests/idls/TestObjectPython.idl

Issue 152043003: IDL compiler: [ReflectMissing], [ReflectInvalid] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 [Reflect] attribute DOMString id; 185 [Reflect] attribute DOMString id;
186 [Reflect] attribute DOMString name; 186 [Reflect] attribute DOMString name;
187 [Reflect] attribute DOMString class; 187 [Reflect] attribute DOMString class;
188 [Reflect=id] attribute DOMString reflectedId; 188 [Reflect=id] attribute DOMString reflectedId;
189 [Reflect=name] attribute DOMString reflectedName; 189 [Reflect=name] attribute DOMString reflectedName;
190 [Reflect=class] attribute DOMString reflectedClass; 190 [Reflect=class] attribute DOMString reflectedClass;
191 // Limited value attributes and enumerated attributes 191 // Limited value attributes and enumerated attributes
192 [Reflect, ReflectOnly="unique"] attribute DOMString limitedToOnlyOneAttribut e; 192 [Reflect, ReflectOnly="unique"] attribute DOMString limitedToOnlyOneAttribut e;
193 [Reflect, ReflectOnly="Per"|"Paal"|"Espen"] attribute DOMString limitedToOnl yAttribute; 193 [Reflect, ReflectOnly="Per"|"Paal"|"Espen"] attribute DOMString limitedToOnl yAttribute;
194 [Reflect=Other, ReflectOnly="Value1"|"Value2" ] attribute DOMString limitedT oOnlyOtherAttribute; 194 [Reflect=Other, ReflectOnly="Value1"|"Value2" ] attribute DOMString limitedT oOnlyOtherAttribute;
195 // [Reflect, ReflectOnly="rsa"|"dsa", ReflectMissing="rsa"] attribute DOMStr ing limitedWithMissingDefaultAttribute; 195 [Reflect, ReflectOnly="rsa"|"dsa", ReflectMissing="rsa"] attribute DOMString limitedWithMissingDefaultAttribute;
196 // [Reflect, ReflectOnly="ltr"|"rtl"|"auto", ReflectMissing="auto", ReflectI nvalid="ltr"] attribute DOMString limitedWithInvalidMissingDefaultAttribute; 196 [Reflect, ReflectOnly="ltr"|"rtl"|"auto", ReflectMissing="auto", ReflectInva lid="ltr"] attribute DOMString limitedWithInvalidMissingDefaultAttribute;
197 // [Reflect, ReflectOnly="left"|"right", ReflectMissing="left", ReflectInval id="left"] attribute DOMString limitedWithInvalidAndMissingDefaultAttribute;
198 // [Reflect, ReflectOnly="anonymous"|"use-credentials", ReflectEmpty="anonym ous", ReflectInvalid="anonymous"] readonly attribute DOMString corsSettingAttrib ute; 197 // [Reflect, ReflectOnly="anonymous"|"use-credentials", ReflectEmpty="anonym ous", ReflectInvalid="anonymous"] readonly attribute DOMString corsSettingAttrib ute;
199 // [Reflect, ReflectOnly="empty"|"missing"|"invalid"|"a-normal", ReflectEmpt y="empty", ReflectMissing="missing", ReflectInvalid="invalid"] readonly attribut e DOMString limitedWithEmptyMissingInvalidAttribute; 198 // [Reflect, ReflectOnly="empty"|"missing"|"invalid"|"a-normal", ReflectEmpt y="empty", ReflectMissing="missing", ReflectInvalid="invalid"] readonly attribut e DOMString limitedWithEmptyMissingInvalidAttribute;
200 199
201 [Replaceable] readonly attribute long replaceableReadonlyLongAttribute; 200 [Replaceable] readonly attribute long replaceableReadonlyLongAttribute;
202 [RuntimeEnabled=FeatureName] attribute long runtimeEnabledLongAttribute; 201 [RuntimeEnabled=FeatureName] attribute long runtimeEnabledLongAttribute;
203 [Conditional=CONDITION, RuntimeEnabled=FeatureName] attribute long condition alRuntimeEnabledLongAttribute; 202 [Conditional=CONDITION, RuntimeEnabled=FeatureName] attribute long condition alRuntimeEnabledLongAttribute;
204 [SetterCallWith=ActiveWindow&FirstWindow] attribute DOMString setterCallWith ActiveWindowAndFirstWindowStringAttribute; 203 [SetterCallWith=ActiveWindow&FirstWindow] attribute DOMString setterCallWith ActiveWindowAndFirstWindowStringAttribute;
205 [SetterCallWith=ExecutionContext] attribute DOMString setterCallWithExecutio nContextStringAttribute; 204 [SetterCallWith=ExecutionContext] attribute DOMString setterCallWithExecutio nContextStringAttribute;
206 [StrictTypeChecking] attribute float strictTypeCheckingFloatAttribute; // n op for non-interface types 205 [StrictTypeChecking] attribute float strictTypeCheckingFloatAttribute; // n op for non-interface types
207 [StrictTypeChecking] attribute TestInterface strictTypeCheckingTestInterface Attribute; 206 [StrictTypeChecking] attribute TestInterface strictTypeCheckingTestInterface Attribute;
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 [ReadOnly] void readOnlyVoidMethod(); 423 [ReadOnly] void readOnlyVoidMethod();
425 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); 424 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod();
426 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); 425 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod();
427 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE nabledVoidMethod(); 426 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE nabledVoidMethod();
428 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg( TestInterfaceEmpty testInterfaceEmptyArg); 427 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg( TestInterfaceEmpty testInterfaceEmptyArg);
429 [StrictTypeChecking] void strictTypeCheckingVoidMethodNullableTestInterfaceE mptyArg(TestInterfaceEmpty? testInterfaceEmptyArg); 428 [StrictTypeChecking] void strictTypeCheckingVoidMethodNullableTestInterfaceE mptyArg(TestInterfaceEmpty? testInterfaceEmptyArg);
430 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri ngMethod(); 429 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri ngMethod();
431 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd efinedStringMethod(); 430 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd efinedStringMethod();
432 [Unforgeable] void unforgeableVoidMethod(); 431 [Unforgeable] void unforgeableVoidMethod();
433 }; 432 };
OLDNEW
« no previous file with comments | « Source/bindings/templates/attributes.cpp ('k') | Source/bindings/tests/results/V8TestObjectPython.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698