| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 attribute EventHandler onwebkitanimationstart; | 192 attribute EventHandler onwebkitanimationstart; |
| 193 attribute EventHandler onwebkittransitionend; | 193 attribute EventHandler onwebkittransitionend; |
| 194 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
andler onwheel; | 194 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
andler onwheel; |
| 195 | 195 |
| 196 [DeprecateAs=CaptureEvents] void captureEvents(); | 196 [DeprecateAs=CaptureEvents] void captureEvents(); |
| 197 [DeprecateAs=ReleaseEvents] void releaseEvents(); | 197 [DeprecateAs=ReleaseEvents] void releaseEvents(); |
| 198 | 198 |
| 199 // Additional constructors. | 199 // Additional constructors. |
| 200 attribute TransitionEventConstructor WebKitTransitionEvent; | 200 attribute TransitionEventConstructor WebKitTransitionEvent; |
| 201 [RuntimeEnabled=CSSAnimationUnprefixed] attribute WebKitAnimationEventConstr
uctor AnimationEvent; | 201 [RuntimeEnabled=CSSAnimationUnprefixed] attribute WebKitAnimationEventConstr
uctor AnimationEvent; |
| 202 attribute URLConstructor webkitURL; // FIXME: deprecate this. | 202 [MeasureAs=PrefixedWindowURL] attribute URLConstructor webkitURL; // FIXME:
deprecate this. |
| 203 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add
metrics to determine when we can remove this. | 203 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add
metrics to determine when we can remove this. |
| 204 attribute IDBCursorConstructor webkitIDBCursor; | 204 attribute IDBCursorConstructor webkitIDBCursor; |
| 205 attribute IDBDatabaseConstructor webkitIDBDatabase; | 205 attribute IDBDatabaseConstructor webkitIDBDatabase; |
| 206 attribute IDBFactoryConstructor webkitIDBFactory; | 206 attribute IDBFactoryConstructor webkitIDBFactory; |
| 207 attribute IDBIndexConstructor webkitIDBIndex; | 207 attribute IDBIndexConstructor webkitIDBIndex; |
| 208 attribute IDBKeyRangeConstructor webkitIDBKeyRange; | 208 attribute IDBKeyRangeConstructor webkitIDBKeyRange; |
| 209 attribute IDBObjectStoreConstructor webkitIDBObjectStore; | 209 attribute IDBObjectStoreConstructor webkitIDBObjectStore; |
| 210 attribute IDBRequestConstructor webkitIDBRequest; | 210 attribute IDBRequestConstructor webkitIDBRequest; |
| 211 attribute IDBTransactionConstructor webkitIDBTransaction; | 211 attribute IDBTransactionConstructor webkitIDBTransaction; |
| 212 | 212 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 239 | 239 |
| 240 [NotEnumerable] getter Window (unsigned long index); | 240 [NotEnumerable] getter Window (unsigned long index); |
| 241 [Custom, NotEnumerable] getter Window (DOMString name); | 241 [Custom, NotEnumerable] getter Window (DOMString name); |
| 242 }; | 242 }; |
| 243 | 243 |
| 244 Window implements GlobalEventHandlers; | 244 Window implements GlobalEventHandlers; |
| 245 Window implements ImageBitmapFactories; | 245 Window implements ImageBitmapFactories; |
| 246 Window implements WindowBase64; | 246 Window implements WindowBase64; |
| 247 Window implements WindowEventHandlers; | 247 Window implements WindowEventHandlers; |
| 248 Window implements WindowTimers; | 248 Window implements WindowTimers; |
| OLD | NEW |