| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 [MeasureAs=PrefixedRequestAnimationFrame] long webkitRequestAnimationFrame(R
equestAnimationFrameCallback callback); | 171 [MeasureAs=PrefixedRequestAnimationFrame] long webkitRequestAnimationFrame(R
equestAnimationFrameCallback callback); |
| 172 [ImplementedAs=cancelAnimationFrame] void webkitCancelAnimationFrame(long id
); | 172 [ImplementedAs=cancelAnimationFrame] void webkitCancelAnimationFrame(long id
); |
| 173 [ImplementedAs=cancelAnimationFrame] void webkitCancelRequestAnimationFrame(
long id); // This is a deprecated alias for webkitCancelAnimationFrame(). Remove
this when removing vendor prefix. | 173 [ImplementedAs=cancelAnimationFrame] void webkitCancelRequestAnimationFrame(
long id); // This is a deprecated alias for webkitCancelAnimationFrame(). Remove
this when removing vendor prefix. |
| 174 | 174 |
| 175 [Replaceable] readonly attribute CSS CSS; | 175 [Replaceable] readonly attribute CSS CSS; |
| 176 | 176 |
| 177 // Event handler attributes | 177 // Event handler attributes |
| 178 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationen
d; | 178 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationen
d; |
| 179 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationit
eration; | 179 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationit
eration; |
| 180 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationst
art; | 180 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationst
art; |
| 181 [RuntimeEnabled=DeviceMotion] attribute EventHandler ondevicemotion; | |
| 182 [RuntimeEnabled=DeviceOrientation] attribute EventHandler ondeviceorientatio
n; | |
| 183 [RuntimeEnabled=OrientationEvent] attribute EventHandler onorientationchange
; | 181 [RuntimeEnabled=OrientationEvent] attribute EventHandler onorientationchange
; |
| 184 attribute EventHandler onsearch; | 182 attribute EventHandler onsearch; |
| 185 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 183 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
| 186 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 184 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
| 187 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 185 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
| 188 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 186 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
| 189 attribute EventHandler ontransitionend; | 187 attribute EventHandler ontransitionend; |
| 190 attribute EventHandler onwebkitanimationend; | 188 attribute EventHandler onwebkitanimationend; |
| 191 attribute EventHandler onwebkitanimationiteration; | 189 attribute EventHandler onwebkitanimationiteration; |
| 192 attribute EventHandler onwebkitanimationstart; | 190 attribute EventHandler onwebkitanimationstart; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 | 237 |
| 240 [NotEnumerable] getter Window (unsigned long index); | 238 [NotEnumerable] getter Window (unsigned long index); |
| 241 [Custom, NotEnumerable] getter Window (DOMString name); | 239 [Custom, NotEnumerable] getter Window (DOMString name); |
| 242 }; | 240 }; |
| 243 | 241 |
| 244 Window implements GlobalEventHandlers; | 242 Window implements GlobalEventHandlers; |
| 245 Window implements ImageBitmapFactories; | 243 Window implements ImageBitmapFactories; |
| 246 Window implements WindowBase64; | 244 Window implements WindowBase64; |
| 247 Window implements WindowEventHandlers; | 245 Window implements WindowEventHandlers; |
| 248 Window implements WindowTimers; | 246 Window implements WindowTimers; |
| OLD | NEW |