| 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 | 276 |
| 277 // EventTarget interface | 277 // EventTarget interface |
| 278 [Custom] void addEventListener(DOMString type, | 278 [Custom] void addEventListener(DOMString type, |
| 279 EventListener listener, | 279 EventListener listener, |
| 280 optional boolean useCapture); | 280 optional boolean useCapture); |
| 281 [Custom] void removeEventListener(DOMString type, | 281 [Custom] void removeEventListener(DOMString type, |
| 282 EventListener listener, | 282 EventListener listener, |
| 283 optional boolean useCapture); | 283 optional boolean useCapture); |
| 284 [RaisesException] boolean dispatchEvent(Event evt); | 284 [RaisesException] boolean dispatchEvent(Event evt); |
| 285 | 285 |
| 286 [Custom] void captureEvents(/*in long eventFlags*/); | |
| 287 [Custom] void releaseEvents(/*in long eventFlags*/); | |
| 288 | |
| 289 // Global constructors | 286 // Global constructors |
| 290 attribute StyleSheetConstructor StyleSheet; | 287 attribute StyleSheetConstructor StyleSheet; |
| 291 attribute CSSStyleSheetConstructor CSSStyleSheet; | 288 attribute CSSStyleSheetConstructor CSSStyleSheet; |
| 292 | 289 |
| 293 attribute CSSValueConstructor CSSValue; | 290 attribute CSSValueConstructor CSSValue; |
| 294 attribute CSSPrimitiveValueConstructor CSSPrimitiveValue; | 291 attribute CSSPrimitiveValueConstructor CSSPrimitiveValue; |
| 295 attribute CSSValueListConstructor CSSValueList; | 292 attribute CSSValueListConstructor CSSValueList; |
| 296 attribute WebKitCSSTransformValueConstructor WebKitCSSTransformValue; | 293 attribute WebKitCSSTransformValueConstructor WebKitCSSTransformValue; |
| 297 | 294 |
| 298 attribute WebKitCSSFilterRuleConstructor WebKitCSSFilterRule; | 295 attribute WebKitCSSFilterRuleConstructor WebKitCSSFilterRule; |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 attribute MutationRecordConstructor MutationRecord; | 741 attribute MutationRecordConstructor MutationRecord; |
| 745 | 742 |
| 746 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; | 743 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; |
| 747 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; | 744 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; |
| 748 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; | 745 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; |
| 749 | 746 |
| 750 // window.toString() requires special handling in V8 | 747 // window.toString() requires special handling in V8 |
| 751 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 748 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
| 752 }; | 749 }; |
| 753 | 750 |
| OLD | NEW |