| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 [Custom] attribute object customObjectAttribute; | 113 [Custom] attribute object customObjectAttribute; |
| 114 [Custom=Getter] attribute long customGetterLongAttribute; | 114 [Custom=Getter] attribute long customGetterLongAttribute; |
| 115 [Custom=Getter] readonly attribute object customGetterReadonlyObjectAttribut
e; | 115 [Custom=Getter] readonly attribute object customGetterReadonlyObjectAttribut
e; |
| 116 [Custom=Setter] attribute long customSetterLongAttribute; | 116 [Custom=Setter] attribute long customSetterLongAttribute; |
| 117 [Conditional=CONDITION, Custom] attribute long customLongAttribute; | 117 [Conditional=CONDITION, Custom] attribute long customLongAttribute; |
| 118 [CustomElementCallbacks] readonly attribute long customElementsCallbacksRead
onlyLongAttribute; | 118 [CustomElementCallbacks] readonly attribute long customElementsCallbacksRead
onlyLongAttribute; |
| 119 [DeprecateAs=LongAttribute] attribute long deprecatedLongAttribute; | 119 [DeprecateAs=LongAttribute] attribute long deprecatedLongAttribute; |
| 120 // FIXME: move to TestCheckSecurityInterface when implement [CheckSecurity] | 120 // FIXME: move to TestCheckSecurityInterface when implement [CheckSecurity] |
| 121 [DoNotCheckSecurity] attribute long doNotCheckSecurityLongAttribute; | 121 [DoNotCheckSecurity] attribute long doNotCheckSecurityLongAttribute; |
| 122 [DoNotCheckSecurity] readonly attribute long doNotCheckSecurityReadonlyLongA
ttribute; // Separate read only attribute to check attribute configuration | 122 [DoNotCheckSecurity] readonly attribute long doNotCheckSecurityReadonlyLongA
ttribute; // Separate read only attribute to check attribute configuration |
| 123 [DoNotCheckSecurity=Getter] attribute long doNotCheckSecurityOnGetterLongAtt
ribute; | |
| 124 [DoNotCheckSecurity=Setter] attribute long doNotCheckSecurityOnSetterLongAtt
ribute; | 123 [DoNotCheckSecurity=Setter] attribute long doNotCheckSecurityOnSetterLongAtt
ribute; |
| 125 [EnforceRange] attribute long enforceRangeLongAttribute; | 124 [EnforceRange] attribute long enforceRangeLongAttribute; |
| 126 [ExposeJSAccessors] attribute long exposeJSAccessorsLongAttribute; | 125 [ExposeJSAccessors] attribute long exposeJSAccessorsLongAttribute; |
| 127 [RaisesException=Getter] attribute long getterRaisesExceptionLongAttribute; | 126 [RaisesException=Getter] attribute long getterRaisesExceptionLongAttribute; |
| 128 [ImplementedAs=implementedAsName] attribute long implementedAsLongAttribute; | 127 [ImplementedAs=implementedAsName] attribute long implementedAsLongAttribute; |
| 129 [Custom, ImplementedAs=implementedAsNameWithCustom] attribute long customImp
lementedAsLongAttribute; | 128 [Custom, ImplementedAs=implementedAsNameWithCustom] attribute long customImp
lementedAsLongAttribute; |
| 130 [Custom=Getter, ImplementedAs=implementedAsNameWithCustomGetter] attribute l
ong customGetterImplementedAsLongAttribute; | 129 [Custom=Getter, ImplementedAs=implementedAsNameWithCustomGetter] attribute l
ong customGetterImplementedAsLongAttribute; |
| 131 [Custom=Setter, ImplementedAs=implementedAsNameWithCustomGetter] attribute l
ong customSetterImplementedAsLongAttribute; | 130 [Custom=Setter, ImplementedAs=implementedAsNameWithCustomGetter] attribute l
ong customSetterImplementedAsLongAttribute; |
| 132 [MeasureAs=TestFeature] attribute long measureAsLongAttribute; | 131 [MeasureAs=TestFeature] attribute long measureAsLongAttribute; |
| 133 [NotEnumerable] attribute long notEnumerableLongAttribute; | 132 [NotEnumerable] attribute long notEnumerableLongAttribute; |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 [RaisesException] void raisesExceptionVoidMethodOptionalLongArg(optional lon
g optionalLongArg); | 360 [RaisesException] void raisesExceptionVoidMethodOptionalLongArg(optional lon
g optionalLongArg); |
| 362 [ReadOnly] void readOnlyVoidMethod(); | 361 [ReadOnly] void readOnlyVoidMethod(); |
| 363 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); | 362 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); |
| 364 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); | 363 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); |
| 365 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE
nabledVoidMethod(); | 364 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE
nabledVoidMethod(); |
| 366 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg(
TestInterfaceEmpty testInterfaceEmptyArg); | 365 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg(
TestInterfaceEmpty testInterfaceEmptyArg); |
| 367 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri
ngMethod(); | 366 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri
ngMethod(); |
| 368 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd
efinedStringMethod(); | 367 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd
efinedStringMethod(); |
| 369 [Unforgeable] void unforgeableVoidMethod(); | 368 [Unforgeable] void unforgeableVoidMethod(); |
| 370 }; | 369 }; |
| OLD | NEW |