| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 [SetterCallWith=ActiveWindow&FirstWindow] attribute DOMString setterCallWith
ActiveWindowAndFirstWindowStringAttribute; | 185 [SetterCallWith=ActiveWindow&FirstWindow] attribute DOMString setterCallWith
ActiveWindowAndFirstWindowStringAttribute; |
| 186 [RaisesException=Setter] attribute long setterRaisesExceptionLongAttribute; | 186 [RaisesException=Setter] attribute long setterRaisesExceptionLongAttribute; |
| 187 [StrictTypeChecking] attribute float strictTypeCheckingFloatAttribute; // n
op for non-interface types | 187 [StrictTypeChecking] attribute float strictTypeCheckingFloatAttribute; // n
op for non-interface types |
| 188 [StrictTypeChecking] attribute TestInterface strictTypeCheckingTestInterface
Attribute; | 188 [StrictTypeChecking] attribute TestInterface strictTypeCheckingTestInterface
Attribute; |
| 189 [TreatNullAs=NullString] attribute DOMString treatNullAsNullStringStringAttr
ibute; | 189 [TreatNullAs=NullString] attribute DOMString treatNullAsNullStringStringAttr
ibute; |
| 190 [TreatReturnedNullStringAs=Null] attribute DOMString treatReturnedNullString
AsNullStringAttribute; | 190 [TreatReturnedNullStringAs=Null] attribute DOMString treatReturnedNullString
AsNullStringAttribute; |
| 191 [TreatReturnedNullStringAs=Undefined] attribute DOMString treatReturnedNullS
tringAsUndefinedStringAttribute; | 191 [TreatReturnedNullStringAs=Undefined] attribute DOMString treatReturnedNullS
tringAsUndefinedStringAttribute; |
| 192 [Reflect, URL] attribute DOMString urlStringAttribute; | 192 [Reflect, URL] attribute DOMString urlStringAttribute; |
| 193 [Reflect=ReflectUrlAttribute, URL] attribute DOMString urlStringAttribute; | 193 [Reflect=ReflectUrlAttribute, URL] attribute DOMString urlStringAttribute; |
| 194 [Unforgeable] attribute long unforgeableLongAttribute; | 194 [Unforgeable] attribute long unforgeableLongAttribute; |
| 195 [Reflect="ReflectUrlAttributeAsAString"] attribute DOMString anotherStringAt
tribute; |
| 195 | 196 |
| 196 | 197 |
| 197 // Methods | 198 // Methods |
| 198 void voidMethod(); | 199 void voidMethod(); |
| 199 static void staticVoidMethod(); | 200 static void staticVoidMethod(); |
| 200 | 201 |
| 201 // Types | 202 // Types |
| 202 // Basic types | 203 // Basic types |
| 203 Date dateMethod(); | 204 Date dateMethod(); |
| 204 DOMString stringMethod(); | 205 DOMString stringMethod(); |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 [RaisesException] void raisesExceptionVoidMethodOptionalLongArg(optional lon
g optionalLongArg); | 393 [RaisesException] void raisesExceptionVoidMethodOptionalLongArg(optional lon
g optionalLongArg); |
| 393 [ReadOnly] void readOnlyVoidMethod(); | 394 [ReadOnly] void readOnlyVoidMethod(); |
| 394 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); | 395 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); |
| 395 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); | 396 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); |
| 396 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE
nabledVoidMethod(); | 397 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE
nabledVoidMethod(); |
| 397 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg(
TestInterfaceEmpty testInterfaceEmptyArg); | 398 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg(
TestInterfaceEmpty testInterfaceEmptyArg); |
| 398 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri
ngMethod(); | 399 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri
ngMethod(); |
| 399 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd
efinedStringMethod(); | 400 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd
efinedStringMethod(); |
| 400 [Unforgeable] void unforgeableVoidMethod(); | 401 [Unforgeable] void unforgeableVoidMethod(); |
| 401 }; | 402 }; |
| OLD | NEW |