| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 // Enumerations | 92 // Enumerations |
| 93 attribute TestEnum testEnumAttribute; | 93 attribute TestEnum testEnumAttribute; |
| 94 // Static attributes (Blink extension) | 94 // Static attributes (Blink extension) |
| 95 static attribute DOMString staticStringAttribute; | 95 static attribute DOMString staticStringAttribute; |
| 96 static attribute long staticLongAttribute; | 96 static attribute long staticLongAttribute; |
| 97 // Miscellaneous special types | 97 // Miscellaneous special types |
| 98 readonly attribute EventHandler readonlyEventHandlerAttribute; | 98 readonly attribute EventHandler readonlyEventHandlerAttribute; |
| 99 attribute Promise promiseAttribute; | 99 attribute Promise promiseAttribute; |
| 100 | 100 |
| 101 // Extended attributes | 101 // Extended attributes |
| 102 [ActivityLogging=AccessForAllWorlds] readonly attribute long activityLogAcce
ssReadonlyLongAttribute; | 102 [ActivityLogging=AccessForAllWorlds] attribute long activityLoggingAccessFor
AllWorldsLongAttribute; |
| 103 [ActivityLogging=GetterForAllWorlds] readonly attribute long activityLogGett
erReadonlyLongAttribute; | 103 [ActivityLogging=GetterForAllWorlds] attribute long activityLoggingGetterFor
AllWorldsLongAttribute; |
| 104 [ActivityLogging=SetterForAllWorlds] attribute long activityLoggingSetterFor
AllWorldsLongAttribute; |
| 104 [CachedAttribute=isValueDirty] attribute any cachedAttributeAnyAttribute; | 105 [CachedAttribute=isValueDirty] attribute any cachedAttributeAnyAttribute; |
| 105 [CallWith=ExecutionContext] attribute any callWithExecutionContextAnyAttribu
te; | 106 [CallWith=ExecutionContext] attribute any callWithExecutionContextAnyAttribu
te; |
| 106 [CheckSecurityForNode] readonly attribute Document checkSecurityForNodeReado
nlyDocumentAttribute; // All uses are readonly | 107 [CheckSecurityForNode] readonly attribute Document checkSecurityForNodeReado
nlyDocumentAttribute; // All uses are readonly |
| 107 [Conditional=Condition] attribute long conditionalLongAttribute; | 108 [Conditional=Condition] attribute long conditionalLongAttribute; |
| 108 [Conditional=Condition1&Condition2] attribute long conditionalAndLongAttribu
te; | 109 [Conditional=Condition1&Condition2] attribute long conditionalAndLongAttribu
te; |
| 109 [Conditional=Condition1|Condition2] attribute long conditionalOrLongAttribut
e; | 110 [Conditional=Condition1|Condition2] attribute long conditionalOrLongAttribut
e; |
| 110 [Custom] attribute long customLongAttribute; | 111 [Custom] attribute long customLongAttribute; |
| 111 [CustomGetter] attribute long customGetterLongAttribute; | 112 [CustomGetter] attribute long customGetterLongAttribute; |
| 112 [CustomSetter] attribute long customSetterLongAttribute; | 113 [CustomSetter] attribute long customSetterLongAttribute; |
| 113 [Conditional=Condition, Custom] attribute long customLongAttribute; | 114 [Conditional=Condition, Custom] attribute long customLongAttribute; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 [SetterRaisesException] readonly attribute long setterRaisesExceptionReadonl
yLongAttribute; // FIXME: stub test case b/c readonly, becomes real test case w
hen implement setters | 156 [SetterRaisesException] readonly attribute long setterRaisesExceptionReadonl
yLongAttribute; // FIXME: stub test case b/c readonly, becomes real test case w
hen implement setters |
| 156 [StrictTypeChecking] readonly attribute float strictTypeCheckingReadonlyFloa
tAttribute; // FIXME: only applicable to writable attributes, implement with se
tters | 157 [StrictTypeChecking] readonly attribute float strictTypeCheckingReadonlyFloa
tAttribute; // FIXME: only applicable to writable attributes, implement with se
tters |
| 157 [StrictTypeChecking] readonly attribute TestInterface strictTypeCheckingRead
onlyTestInterfaceAttribute; // FIXME: only applicable to writable attributes, i
mplement with setters | 158 [StrictTypeChecking] readonly attribute TestInterface strictTypeCheckingRead
onlyTestInterfaceAttribute; // FIXME: only applicable to writable attributes, i
mplement with setters |
| 158 [TreatNullAs=NullString] readonly attribute DOMString treatNullAsNullStringR
eadonlyStringAttribute; // FIXME: only applicable to writable attributes, imple
ment with setters | 159 [TreatNullAs=NullString] readonly attribute DOMString treatNullAsNullStringR
eadonlyStringAttribute; // FIXME: only applicable to writable attributes, imple
ment with setters |
| 159 [TreatReturnedNullStringAs=Null] readonly attribute DOMString treatReturnedN
ullStringAsNullReadonlyStringAttribute; | 160 [TreatReturnedNullStringAs=Null] readonly attribute DOMString treatReturnedN
ullStringAsNullReadonlyStringAttribute; |
| 160 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString treatRetu
rnedNullStringAsUndefinedReadonlyStringAttribute; | 161 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString treatRetu
rnedNullStringAsUndefinedReadonlyStringAttribute; |
| 161 [Reflect, URL] readonly attribute DOMString urlReadonlyStringAttribute; | 162 [Reflect, URL] readonly attribute DOMString urlReadonlyStringAttribute; |
| 162 [Reflect=ReflectUrlAttribute, URL] readonly attribute DOMString urlReadonlyS
tringAttribute; | 163 [Reflect=ReflectUrlAttribute, URL] readonly attribute DOMString urlReadonlyS
tringAttribute; |
| 163 [Unforgeable] readonly attribute long unforgeableReadonlyLongAttribute; | 164 [Unforgeable] readonly attribute long unforgeableReadonlyLongAttribute; |
| 164 }; | 165 }; |
| OLD | NEW |