| 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 // attribute EventHandler onafterprint; | 238 // attribute EventHandler onafterprint; |
| 239 // attribute EventHandler onbeforeprint; | 239 // attribute EventHandler onbeforeprint; |
| 240 // attribute EventHandler onreadystatechange; | 240 // attribute EventHandler onreadystatechange; |
| 241 // attribute EventHandler onredo; | 241 // attribute EventHandler onredo; |
| 242 // attribute EventHandler onshow; | 242 // attribute EventHandler onshow; |
| 243 // attribute EventHandler onundo; | 243 // attribute EventHandler onundo; |
| 244 | 244 |
| 245 // Webkit extensions | 245 // Webkit extensions |
| 246 attribute EventHandler onreset; | 246 attribute EventHandler onreset; |
| 247 attribute EventHandler onsearch; | 247 attribute EventHandler onsearch; |
| 248 [EnabledAtRuntime=CSSAnimationUnprefixed] attribute EventHandler onanimation
end; |
| 249 [EnabledAtRuntime=CSSAnimationUnprefixed] attribute EventHandler onanimation
iteration; |
| 250 [EnabledAtRuntime=CSSAnimationUnprefixed] attribute EventHandler onanimation
start; |
| 248 attribute EventHandler onwebkitanimationend; | 251 attribute EventHandler onwebkitanimationend; |
| 249 attribute EventHandler onwebkitanimationiteration; | 252 attribute EventHandler onwebkitanimationiteration; |
| 250 attribute EventHandler onwebkitanimationstart; | 253 attribute EventHandler onwebkitanimationstart; |
| 251 attribute EventHandler onwebkittransitionend; | 254 attribute EventHandler onwebkittransitionend; |
| 252 attribute EventHandler ontransitionend; | 255 attribute EventHandler ontransitionend; |
| 253 [Conditional=ORIENTATION_EVENTS] attribute EventHandler onorientationchange; | 256 [Conditional=ORIENTATION_EVENTS] attribute EventHandler onorientationchange; |
| 254 [EnabledAtRuntime=Touch] attribute EventHandler ontouchstart; | 257 [EnabledAtRuntime=Touch] attribute EventHandler ontouchstart; |
| 255 [EnabledAtRuntime=Touch] attribute EventHandler ontouchmove; | 258 [EnabledAtRuntime=Touch] attribute EventHandler ontouchmove; |
| 256 [EnabledAtRuntime=Touch] attribute EventHandler ontouchend; | 259 [EnabledAtRuntime=Touch] attribute EventHandler ontouchend; |
| 257 [EnabledAtRuntime=Touch] attribute EventHandler ontouchcancel; | 260 [EnabledAtRuntime=Touch] attribute EventHandler ontouchcancel; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 // window.toString() requires special handling in V8 | 306 // window.toString() requires special handling in V8 |
| 304 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 307 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
| 305 | 308 |
| 306 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned
long index); | 309 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned
long index); |
| 307 [Custom, NotEnumerable] getter Window (DOMString name); | 310 [Custom, NotEnumerable] getter Window (DOMString name); |
| 308 }; | 311 }; |
| 309 | 312 |
| 310 Window implements ImageBitmapFactories; | 313 Window implements ImageBitmapFactories; |
| 311 Window implements WindowTimers; | 314 Window implements WindowTimers; |
| 312 Window implements WindowBase64; | 315 Window implements WindowBase64; |
| OLD | NEW |