| 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 attribute PageTransitionEventConstructor PageTransitionEvent; | 557 attribute PageTransitionEventConstructor PageTransitionEvent; |
| 558 attribute ProgressEventConstructor ProgressEvent; | 558 attribute ProgressEventConstructor ProgressEvent; |
| 559 attribute TextEventConstructor TextEvent; | 559 attribute TextEventConstructor TextEvent; |
| 560 attribute UIEventConstructor UIEvent; | 560 attribute UIEventConstructor UIEvent; |
| 561 attribute WebKitAnimationEventConstructor WebKitAnimationEvent; | 561 attribute WebKitAnimationEventConstructor WebKitAnimationEvent; |
| 562 attribute WebKitTransitionEventConstructor WebKitTransitionEvent; | 562 attribute WebKitTransitionEventConstructor WebKitTransitionEvent; |
| 563 attribute WheelEventConstructor WheelEvent; | 563 attribute WheelEventConstructor WheelEvent; |
| 564 attribute XMLHttpRequestProgressEventConstructor XMLHttpRequestProgressEvent
; | 564 attribute XMLHttpRequestProgressEventConstructor XMLHttpRequestProgressEvent
; |
| 565 [Conditional=DEVICE_ORIENTATION, V8EnabledAtRuntime] attribute DeviceMotionE
ventConstructor DeviceMotionEvent; | 565 [Conditional=DEVICE_ORIENTATION, V8EnabledAtRuntime] attribute DeviceMotionE
ventConstructor DeviceMotionEvent; |
| 566 [Conditional=DEVICE_ORIENTATION, V8EnabledAtRuntime] attribute DeviceOrienta
tionEventConstructor DeviceOrientationEvent; | 566 [Conditional=DEVICE_ORIENTATION, V8EnabledAtRuntime] attribute DeviceOrienta
tionEventConstructor DeviceOrientationEvent; |
| 567 [Conditional=TOUCH_EVENTS] attribute TouchConstructor Touch; | |
| 568 [Conditional=TOUCH_EVENTS] attribute TouchEventConstructor TouchEvent; | 567 [Conditional=TOUCH_EVENTS] attribute TouchEventConstructor TouchEvent; |
| 569 [Conditional=TOUCH_EVENTS] attribute TouchListConstructor TouchList; | |
| 570 attribute StorageEventConstructor StorageEvent; | 568 attribute StorageEventConstructor StorageEvent; |
| 571 [Conditional=INPUT_SPEECH] attribute SpeechInputEventConstructor SpeechInput
Event; | 569 [Conditional=INPUT_SPEECH] attribute SpeechInputEventConstructor SpeechInput
Event; |
| 572 [Conditional=WEBGL] attribute WebGLContextEventConstructor WebGLContextEvent
; | 570 [Conditional=WEBGL] attribute WebGLContextEventConstructor WebGLContextEvent
; |
| 573 [Conditional=PROXIMITY_EVENTS] attribute DeviceProximityEventConstructor Dev
iceProximityEvent; | 571 [Conditional=PROXIMITY_EVENTS] attribute DeviceProximityEventConstructor Dev
iceProximityEvent; |
| 574 | 572 |
| 575 attribute EventExceptionConstructor EventException; | 573 attribute EventExceptionConstructor EventException; |
| 576 | 574 |
| 577 attribute WebKitCSSKeyframeRuleConstructor WebKitCSSKeyframeRule; | 575 attribute WebKitCSSKeyframeRuleConstructor WebKitCSSKeyframeRule; |
| 578 attribute WebKitCSSKeyframesRuleConstructor WebKitCSSKeyframesRule; | 576 attribute WebKitCSSKeyframesRuleConstructor WebKitCSSKeyframesRule; |
| 579 [Conditional=CSS_REGIONS, V8EnabledAtRuntime=cssRegions] attribute WebKitCSS
RegionRuleConstructor WebKitCSSRegionRule; | 577 [Conditional=CSS_REGIONS, V8EnabledAtRuntime=cssRegions] attribute WebKitCSS
RegionRuleConstructor WebKitCSSRegionRule; |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 801 [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] attribute SourceB
ufferListConstructor WebKitSourceBufferList; | 799 [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] attribute SourceB
ufferListConstructor WebKitSourceBufferList; |
| 802 | 800 |
| 803 #endif // defined(LANGUAGE_JAVASCRIPT) | 801 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 804 | 802 |
| 805 #if defined(V8_BINDING) && V8_BINDING | 803 #if defined(V8_BINDING) && V8_BINDING |
| 806 // window.toString() requires special handling in V8 | 804 // window.toString() requires special handling in V8 |
| 807 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString
toString(); | 805 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString
toString(); |
| 808 #endif // defined(V8_BINDING) | 806 #endif // defined(V8_BINDING) |
| 809 }; | 807 }; |
| 810 | 808 |
| OLD | NEW |