| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 attribute float[] floatArrayAttribute; | 143 attribute float[] floatArrayAttribute; |
| 144 // Nullable attributes | 144 // Nullable attributes |
| 145 attribute DOMString? stringOrNullAttribute; | 145 attribute DOMString? stringOrNullAttribute; |
| 146 attribute long? longOrNullAttribute; | 146 attribute long? longOrNullAttribute; |
| 147 attribute TestInterface? testInterfaceOrNullAttribute; | 147 attribute TestInterface? testInterfaceOrNullAttribute; |
| 148 // Enumerations | 148 // Enumerations |
| 149 attribute TestEnum testEnumAttribute; | 149 attribute TestEnum testEnumAttribute; |
| 150 // Static attributes | 150 // Static attributes |
| 151 static attribute DOMString staticStringAttribute; | 151 static attribute DOMString staticStringAttribute; |
| 152 static attribute long staticLongAttribute; | 152 static attribute long staticLongAttribute; |
| 153 // Exceptional type | |
| 154 attribute EventHandler eventHandlerAttribute; | |
| 155 | 153 |
| 156 // Extended attributes | 154 // Extended attributes |
| 157 [CachedAttribute=isValueDirty] attribute any cachedAttributeAnyAttribute; | 155 [CachedAttribute=isValueDirty] attribute any cachedAttributeAnyAttribute; |
| 158 [CachedAttribute=isArrayDirty] attribute DOMString[] cachedArrayAttribute; | 156 [CachedAttribute=isArrayDirty] attribute DOMString[] cachedArrayAttribute; |
| 159 [CachedAttribute=isStringDirty] attribute DOMString? cachedStringOrNoneAttri
bute; | 157 [CachedAttribute=isStringDirty] attribute DOMString? cachedStringOrNoneAttri
bute; |
| 160 [CallWith=ExecutionContext] attribute any callWithExecutionContextAnyAttribu
te; | 158 [CallWith=ExecutionContext] attribute any callWithExecutionContextAnyAttribu
te; |
| 161 [CallWith=ScriptState] attribute any callWithScriptStateAnyAttribute; | 159 [CallWith=ScriptState] attribute any callWithScriptStateAnyAttribute; |
| 162 [CallWith=(ExecutionContext,ScriptState)] attribute any callWithExecutionCon
textAndScriptStateAnyAttribute; | 160 [CallWith=(ExecutionContext,ScriptState)] attribute any callWithExecutionCon
textAndScriptStateAnyAttribute; |
| 163 [CheckSecurity=Node] readonly attribute Document checkSecurityForNodeReadonl
yDocumentAttribute; // All uses are read only | 161 [CheckSecurity=Node] readonly attribute Document checkSecurityForNodeReadonl
yDocumentAttribute; // All uses are read only |
| 164 [Conditional=CONDITION] attribute long conditionalLongAttribute; | 162 [Conditional=CONDITION] attribute long conditionalLongAttribute; |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; | 525 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; |
| 528 [ImplementedInPrivateScript] attribute short shortAttribute; | 526 [ImplementedInPrivateScript] attribute short shortAttribute; |
| 529 [ImplementedInPrivateScript] attribute DOMString stringAttribute; | 527 [ImplementedInPrivateScript] attribute DOMString stringAttribute; |
| 530 [ImplementedInPrivateScript] attribute Node nodeAttribute; | 528 [ImplementedInPrivateScript] attribute Node nodeAttribute; |
| 531 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); | 529 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); |
| 532 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; | 530 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; |
| 533 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); | 531 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); |
| 534 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; | 532 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; |
| 535 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; | 533 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; |
| 536 }; | 534 }; |
| OLD | NEW |