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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 184 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
185 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 185 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
186 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 186 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
187 attribute EventHandler ontransitionend; | 187 attribute EventHandler ontransitionend; |
188 attribute EventHandler onwebkitanimationend; | 188 attribute EventHandler onwebkitanimationend; |
189 attribute EventHandler onwebkitanimationiteration; | 189 attribute EventHandler onwebkitanimationiteration; |
190 attribute EventHandler onwebkitanimationstart; | 190 attribute EventHandler onwebkitanimationstart; |
191 attribute EventHandler onwebkittransitionend; | 191 attribute EventHandler onwebkittransitionend; |
192 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
andler onwheel; | 192 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
andler onwheel; |
193 | 193 |
194 [DeprecateAs=CaptureEvents] void captureEvents(); | 194 [MeasureAs=WindowCaptureEvents] void captureEvents(); |
195 [DeprecateAs=ReleaseEvents] void releaseEvents(); | 195 [MeasureAs=WindowReleaseEvents] void releaseEvents(); |
196 | 196 |
197 // Additional constructors. | 197 // Additional constructors. |
198 attribute TransitionEventConstructor WebKitTransitionEvent; | 198 attribute TransitionEventConstructor WebKitTransitionEvent; |
199 [RuntimeEnabled=CSSAnimationUnprefixed] attribute WebKitAnimationEventConstr
uctor AnimationEvent; | 199 [RuntimeEnabled=CSSAnimationUnprefixed] attribute WebKitAnimationEventConstr
uctor AnimationEvent; |
200 [MeasureAs=PrefixedWindowURL] attribute URLConstructor webkitURL; // FIXME:
deprecate this. | 200 [MeasureAs=PrefixedWindowURL] attribute URLConstructor webkitURL; // FIXME:
deprecate this. |
201 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add
metrics to determine when we can remove this. | 201 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add
metrics to determine when we can remove this. |
202 attribute IDBCursorConstructor webkitIDBCursor; | 202 attribute IDBCursorConstructor webkitIDBCursor; |
203 attribute IDBDatabaseConstructor webkitIDBDatabase; | 203 attribute IDBDatabaseConstructor webkitIDBDatabase; |
204 attribute IDBFactoryConstructor webkitIDBFactory; | 204 attribute IDBFactoryConstructor webkitIDBFactory; |
205 attribute IDBIndexConstructor webkitIDBIndex; | 205 attribute IDBIndexConstructor webkitIDBIndex; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 | 237 |
238 [NotEnumerable] getter Window (unsigned long index); | 238 [NotEnumerable] getter Window (unsigned long index); |
239 [Custom, NotEnumerable] getter Window (DOMString name); | 239 [Custom, NotEnumerable] getter Window (DOMString name); |
240 }; | 240 }; |
241 | 241 |
242 Window implements GlobalEventHandlers; | 242 Window implements GlobalEventHandlers; |
243 Window implements ImageBitmapFactories; | 243 Window implements ImageBitmapFactories; |
244 Window implements WindowBase64; | 244 Window implements WindowBase64; |
245 Window implements WindowEventHandlers; | 245 Window implements WindowEventHandlers; |
246 Window implements WindowTimers; | 246 Window implements WindowTimers; |
OLD | NEW |