| 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 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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; |
| 532 [Conditional=CSS_REGIONS, EnabledAtRuntime=cssRegions] attribute WebKitCSSRe
gionRuleConstructor WebKitCSSRegionRule; | 532 [EnabledAtRuntime=cssRegions] attribute WebKitCSSRegionRuleConstructor WebKi
tCSSRegionRule; |
| 533 | 533 |
| 534 attribute WebKitCSSMatrixConstructor WebKitCSSMatrix; // Usable with the new
operator | 534 attribute WebKitCSSMatrixConstructor WebKitCSSMatrix; // Usable with the new
operator |
| 535 | 535 |
| 536 attribute DOMPointConstructor WebKitPoint; // Usable with new the operator | 536 attribute DOMPointConstructor WebKitPoint; // Usable with new the operator |
| 537 | 537 |
| 538 attribute ClipboardConstructor Clipboard; | 538 attribute ClipboardConstructor Clipboard; |
| 539 | 539 |
| 540 attribute WorkerConstructor Worker; // Usable with the new operator | 540 attribute WorkerConstructor Worker; // Usable with the new operator |
| 541 [EnabledAtRuntime] attribute SharedWorkerConstructor SharedWorker; // Usable
with the new operator | 541 [EnabledAtRuntime] attribute SharedWorkerConstructor SharedWorker; // Usable
with the new operator |
| 542 | 542 |
| (...skipping 207 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 |