| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 attribute EventHandler onwebkitanimationstart; | 188 attribute EventHandler onwebkitanimationstart; |
| 189 attribute EventHandler onwebkittransitionend; | 189 attribute EventHandler onwebkittransitionend; |
| 190 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
andler onwheel; | 190 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
andler onwheel; |
| 191 | 191 |
| 192 [DeprecateAs=CaptureEvents] void captureEvents(); | 192 [DeprecateAs=CaptureEvents] void captureEvents(); |
| 193 [DeprecateAs=ReleaseEvents] void releaseEvents(); | 193 [DeprecateAs=ReleaseEvents] void releaseEvents(); |
| 194 | 194 |
| 195 // Additional constructors. | 195 // Additional constructors. |
| 196 attribute TransitionEventConstructor WebKitTransitionEvent; | 196 attribute TransitionEventConstructor WebKitTransitionEvent; |
| 197 [RuntimeEnabled=CSSAnimationUnprefixed] attribute WebKitAnimationEventConstr
uctor AnimationEvent; | 197 [RuntimeEnabled=CSSAnimationUnprefixed] attribute WebKitAnimationEventConstr
uctor AnimationEvent; |
| 198 // Mozilla has a separate XMLDocument object for XML documents. | |
| 199 // We just use Document for this. | |
| 200 attribute DocumentConstructor XMLDocument; | |
| 201 attribute URLConstructor webkitURL; // FIXME: deprecate this. | 198 attribute URLConstructor webkitURL; // FIXME: deprecate this. |
| 202 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add
metrics to determine when we can remove this. | 199 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add
metrics to determine when we can remove this. |
| 203 attribute IDBCursorConstructor webkitIDBCursor; | 200 attribute IDBCursorConstructor webkitIDBCursor; |
| 204 attribute IDBDatabaseConstructor webkitIDBDatabase; | 201 attribute IDBDatabaseConstructor webkitIDBDatabase; |
| 205 attribute IDBFactoryConstructor webkitIDBFactory; | 202 attribute IDBFactoryConstructor webkitIDBFactory; |
| 206 attribute IDBIndexConstructor webkitIDBIndex; | 203 attribute IDBIndexConstructor webkitIDBIndex; |
| 207 attribute IDBKeyRangeConstructor webkitIDBKeyRange; | 204 attribute IDBKeyRangeConstructor webkitIDBKeyRange; |
| 208 attribute IDBObjectStoreConstructor webkitIDBObjectStore; | 205 attribute IDBObjectStoreConstructor webkitIDBObjectStore; |
| 209 attribute IDBRequestConstructor webkitIDBRequest; | 206 attribute IDBRequestConstructor webkitIDBRequest; |
| 210 attribute IDBTransactionConstructor webkitIDBTransaction; | 207 attribute IDBTransactionConstructor webkitIDBTransaction; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 235 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned
long index); | 232 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned
long index); |
| 236 [Custom, NotEnumerable] getter Window (DOMString name); | 233 [Custom, NotEnumerable] getter Window (DOMString name); |
| 237 }; | 234 }; |
| 238 | 235 |
| 239 Window implements GlobalEventHandlers; | 236 Window implements GlobalEventHandlers; |
| 240 Window implements ImageBitmapFactories; | 237 Window implements ImageBitmapFactories; |
| 241 Window implements WindowBase64; | 238 Window implements WindowBase64; |
| 242 Window implements WindowEventHandlers; | 239 Window implements WindowEventHandlers; |
| 243 Window implements WindowTimers; | 240 Window implements WindowTimers; |
| 244 | 241 |
| OLD | NEW |