OLD | NEW |
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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 attribute float[] floatArrayAttribute; | 122 attribute float[] floatArrayAttribute; |
123 // Nullable attributes | 123 // Nullable attributes |
124 attribute DOMString? nullableStringAttribute; | 124 attribute DOMString? nullableStringAttribute; |
125 attribute long? nullableLongAttribute; | 125 attribute long? nullableLongAttribute; |
126 // Enumerations | 126 // Enumerations |
127 attribute TestEnum testEnumAttribute; | 127 attribute TestEnum testEnumAttribute; |
128 // Static attributes | 128 // Static attributes |
129 static attribute DOMString staticStringAttribute; | 129 static attribute DOMString staticStringAttribute; |
130 static attribute long staticLongAttribute; | 130 static attribute long staticLongAttribute; |
131 // Constructors | 131 // Constructors |
132 // attribute attribute TestSubObjConstructor TestSubObj; | |
133 attribute TestObjectAConstructor testObjectAConstructorAttribute; | 132 attribute TestObjectAConstructor testObjectAConstructorAttribute; |
134 // Exceptional type | 133 // Exceptional type |
135 attribute EventHandler eventHandlerAttribute; | 134 attribute EventHandler eventHandlerAttribute; |
136 | 135 |
137 // Extended attributes | 136 // Extended attributes |
138 [ActivityLogging=ForAllWorlds] attribute long activityLoggingAccessForAllWor
ldsLongAttribute; | 137 [ActivityLogging=ForAllWorlds] attribute long activityLoggingAccessForAllWor
ldsLongAttribute; |
139 [ActivityLogging=GetterForAllWorlds] attribute long activityLoggingGetterFor
AllWorldsLongAttribute; | 138 [ActivityLogging=GetterForAllWorlds] attribute long activityLoggingGetterFor
AllWorldsLongAttribute; |
140 [ActivityLogging=SetterForAllWorlds] attribute long activityLoggingSetterFor
AllWorldsLongAttribute; | 139 [ActivityLogging=SetterForAllWorlds] attribute long activityLoggingSetterFor
AllWorldsLongAttribute; |
141 [CachedAttribute=isValueDirty] attribute any cachedAttributeAnyAttribute; | 140 [CachedAttribute=isValueDirty] attribute any cachedAttributeAnyAttribute; |
142 [CallWith=ExecutionContext] attribute any callWithExecutionContextAnyAttribu
te; | 141 [CallWith=ExecutionContext] attribute any callWithExecutionContextAnyAttribu
te; |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 [RaisesException] void raisesExceptionVoidMethodOptionalTestCallbackInterfac
eArg(optional TestCallbackInterface optionalTestCallbackInterfaceArg); | 406 [RaisesException] void raisesExceptionVoidMethodOptionalTestCallbackInterfac
eArg(optional TestCallbackInterface optionalTestCallbackInterfaceArg); |
408 [ReadOnly] void readOnlyVoidMethod(); | 407 [ReadOnly] void readOnlyVoidMethod(); |
409 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); | 408 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); |
410 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); | 409 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); |
411 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE
nabledVoidMethod(); | 410 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE
nabledVoidMethod(); |
412 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg(
TestInterfaceEmpty testInterfaceEmptyArg); | 411 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg(
TestInterfaceEmpty testInterfaceEmptyArg); |
413 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri
ngMethod(); | 412 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri
ngMethod(); |
414 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd
efinedStringMethod(); | 413 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd
efinedStringMethod(); |
415 [Unforgeable] void unforgeableVoidMethod(); | 414 [Unforgeable] void unforgeableVoidMethod(); |
416 }; | 415 }; |
OLD | NEW |