| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 attribute EventListener onreset; | 261 attribute EventListener onreset; |
| 262 attribute EventListener onsearch; | 262 attribute EventListener onsearch; |
| 263 attribute EventListener onwebkitanimationend; | 263 attribute EventListener onwebkitanimationend; |
| 264 attribute EventListener onwebkitanimationiteration; | 264 attribute EventListener onwebkitanimationiteration; |
| 265 attribute EventListener onwebkitanimationstart; | 265 attribute EventListener onwebkitanimationstart; |
| 266 attribute EventListener onwebkittransitionend; | 266 attribute EventListener onwebkittransitionend; |
| 267 attribute EventListener ontransitionend; | 267 attribute EventListener ontransitionend; |
| 268 #if defined(ENABLE_ORIENTATION_EVENTS) && ENABLE_ORIENTATION_EVENTS | 268 #if defined(ENABLE_ORIENTATION_EVENTS) && ENABLE_ORIENTATION_EVENTS |
| 269 attribute EventListener onorientationchange; | 269 attribute EventListener onorientationchange; |
| 270 #endif | 270 #endif |
| 271 [EnabledAtRuntime=touch] attribute EventListener ontouchstart; | 271 [Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute EventListener on
touchstart; |
| 272 [EnabledAtRuntime=touch] attribute EventListener ontouchmove; | 272 [Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute EventListener on
touchmove; |
| 273 [EnabledAtRuntime=touch] attribute EventListener ontouchend; | 273 [Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute EventListener on
touchend; |
| 274 [EnabledAtRuntime=touch] attribute EventListener ontouchcancel; | 274 [Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute EventListener on
touchcancel; |
| 275 | 275 |
| 276 [EnabledAtRuntime] attribute EventListener ondevicemotion; | 276 [EnabledAtRuntime] attribute EventListener ondevicemotion; |
| 277 [EnabledAtRuntime] attribute EventListener ondeviceorientation; | 277 [EnabledAtRuntime] attribute EventListener ondeviceorientation; |
| 278 | 278 |
| 279 // EventTarget interface | 279 // EventTarget interface |
| 280 [Custom] void addEventListener(DOMString type, | 280 [Custom] void addEventListener(DOMString type, |
| 281 EventListener listener, | 281 EventListener listener, |
| 282 optional boolean useCapture); | 282 optional boolean useCapture); |
| 283 [Custom] void removeEventListener(DOMString type, | 283 [Custom] void removeEventListener(DOMString type, |
| 284 EventListener listener, | 284 EventListener listener, |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 attribute ProgressEventConstructor ProgressEvent; | 509 attribute ProgressEventConstructor ProgressEvent; |
| 510 attribute TextEventConstructor TextEvent; | 510 attribute TextEventConstructor TextEvent; |
| 511 attribute TransitionEventConstructor TransitionEvent; | 511 attribute TransitionEventConstructor TransitionEvent; |
| 512 attribute UIEventConstructor UIEvent; | 512 attribute UIEventConstructor UIEvent; |
| 513 attribute AnimationEventConstructor WebKitAnimationEvent; | 513 attribute AnimationEventConstructor WebKitAnimationEvent; |
| 514 attribute TransitionEventConstructor WebKitTransitionEvent; | 514 attribute TransitionEventConstructor WebKitTransitionEvent; |
| 515 attribute WheelEventConstructor WheelEvent; | 515 attribute WheelEventConstructor WheelEvent; |
| 516 attribute XMLHttpRequestProgressEventConstructor XMLHttpRequestProgressEvent
; | 516 attribute XMLHttpRequestProgressEventConstructor XMLHttpRequestProgressEvent
; |
| 517 [EnabledAtRuntime] attribute DeviceMotionEventConstructor DeviceMotionEvent; | 517 [EnabledAtRuntime] attribute DeviceMotionEventConstructor DeviceMotionEvent; |
| 518 [EnabledAtRuntime] attribute DeviceOrientationEventConstructor DeviceOrienta
tionEvent; | 518 [EnabledAtRuntime] attribute DeviceOrientationEventConstructor DeviceOrienta
tionEvent; |
| 519 [EnabledAtRuntime=touch] attribute TouchConstructor Touch; | 519 [Conditional=TOUCH_EVENTS, EnabledAtRuntime=touch] attribute TouchConstructo
r Touch; |
| 520 [EnabledAtRuntime=touch] attribute TouchEventConstructor TouchEvent; | 520 [Conditional=TOUCH_EVENTS, EnabledAtRuntime=touch] attribute TouchEventConst
ructor TouchEvent; |
| 521 [EnabledAtRuntime=touch] attribute TouchListConstructor TouchList; | 521 [Conditional=TOUCH_EVENTS, EnabledAtRuntime=touch] attribute TouchListConstr
uctor TouchList; |
| 522 attribute StorageEventConstructor StorageEvent; | 522 attribute StorageEventConstructor StorageEvent; |
| 523 [Conditional=INPUT_SPEECH] attribute SpeechInputEventConstructor SpeechInput
Event; | 523 [Conditional=INPUT_SPEECH] attribute SpeechInputEventConstructor SpeechInput
Event; |
| 524 [Conditional=WEBGL] attribute WebGLContextEventConstructor WebGLContextEvent
; | 524 [Conditional=WEBGL] attribute WebGLContextEventConstructor WebGLContextEvent
; |
| 525 [EnabledAtRuntime=requestAutocomplete] attribute AutocompleteErrorEventConst
ructor AutocompleteErrorEvent; | 525 [EnabledAtRuntime=requestAutocomplete] attribute AutocompleteErrorEventConst
ructor AutocompleteErrorEvent; |
| 526 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute Secur
ityPolicyViolationEventConstructor SecurityPolicyViolationEvent; | 526 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute Secur
ityPolicyViolationEventConstructor SecurityPolicyViolationEvent; |
| 527 | 527 |
| 528 attribute EventExceptionConstructor EventException; | 528 attribute EventExceptionConstructor EventException; |
| 529 | 529 |
| 530 attribute WebKitCSSKeyframeRuleConstructor WebKitCSSKeyframeRule; | 530 attribute WebKitCSSKeyframeRuleConstructor WebKitCSSKeyframeRule; |
| 531 attribute WebKitCSSKeyframesRuleConstructor WebKitCSSKeyframesRule; | 531 attribute WebKitCSSKeyframesRuleConstructor WebKitCSSKeyframesRule; |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 attribute MutationRecordConstructor MutationRecord; | 750 attribute MutationRecordConstructor MutationRecord; |
| 751 | 751 |
| 752 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; | 752 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; |
| 753 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; | 753 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; |
| 754 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; | 754 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; |
| 755 | 755 |
| 756 // window.toString() requires special handling in V8 | 756 // window.toString() requires special handling in V8 |
| 757 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 757 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
| 758 }; | 758 }; |
| 759 | 759 |
| OLD | NEW |