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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 attribute DOMString? stringOrNullAttribute; | 148 attribute DOMString? stringOrNullAttribute; |
149 attribute long? longOrNullAttribute; | 149 attribute long? longOrNullAttribute; |
150 attribute TestInterface? testInterfaceOrNullAttribute; | 150 attribute TestInterface? testInterfaceOrNullAttribute; |
151 // Enumerations | 151 // Enumerations |
152 attribute TestEnum testEnumAttribute; | 152 attribute TestEnum testEnumAttribute; |
153 // Static attributes | 153 // Static attributes |
154 static attribute DOMString staticStringAttribute; | 154 static attribute DOMString staticStringAttribute; |
155 static attribute long staticLongAttribute; | 155 static attribute long staticLongAttribute; |
156 // Exceptional type | 156 // Exceptional type |
157 attribute EventHandler eventHandlerAttribute; | 157 attribute EventHandler eventHandlerAttribute; |
| 158 // Union types |
| 159 attribute (double or DOMString) doubleOrStringAttribute; |
158 | 160 |
159 // Extended attributes | 161 // Extended attributes |
160 [LogActivity, LogAllWorlds] attribute long activityLoggingAccessForAllWorlds
LongAttribute; | 162 [LogActivity, LogAllWorlds] attribute long activityLoggingAccessForAllWorlds
LongAttribute; |
161 [LogActivity=GetterOnly, LogAllWorlds] attribute long activityLoggingGetterF
orAllWorldsLongAttribute; | 163 [LogActivity=GetterOnly, LogAllWorlds] attribute long activityLoggingGetterF
orAllWorldsLongAttribute; |
162 [LogActivity=SetterOnly, LogAllWorlds] attribute long activityLoggingSetterF
orAllWorldsLongAttribute; | 164 [LogActivity=SetterOnly, LogAllWorlds] attribute long activityLoggingSetterF
orAllWorldsLongAttribute; |
163 [CachedAttribute=isValueDirty] attribute any cachedAttributeAnyAttribute; | 165 [CachedAttribute=isValueDirty] attribute any cachedAttributeAnyAttribute; |
164 [CachedAttribute=isArrayDirty] attribute DOMString[] cachedArrayAttribute; | 166 [CachedAttribute=isArrayDirty] attribute DOMString[] cachedArrayAttribute; |
165 [CachedAttribute=isStringDirty] attribute DOMString? cachedStringOrNoneAttri
bute; | 167 [CachedAttribute=isStringDirty] attribute DOMString? cachedStringOrNoneAttri
bute; |
166 [CallWith=ExecutionContext] attribute any callWithExecutionContextAnyAttribu
te; | 168 [CallWith=ExecutionContext] attribute any callWithExecutionContextAnyAttribu
te; |
167 [CallWith=ScriptState] attribute any callWithScriptStateAnyAttribute; | 169 [CallWith=ScriptState] attribute any callWithScriptStateAnyAttribute; |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
555 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; | 557 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; |
556 [ImplementedInPrivateScript] attribute short shortAttribute; | 558 [ImplementedInPrivateScript] attribute short shortAttribute; |
557 [ImplementedInPrivateScript] attribute DOMString stringAttribute; | 559 [ImplementedInPrivateScript] attribute DOMString stringAttribute; |
558 [ImplementedInPrivateScript] attribute Node nodeAttribute; | 560 [ImplementedInPrivateScript] attribute Node nodeAttribute; |
559 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); | 561 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); |
560 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; | 562 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; |
561 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); | 563 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); |
562 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; | 564 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; |
563 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; | 565 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; |
564 }; | 566 }; |
OLD | NEW |