| 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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 attribute EventSourceConstructor EventSource; // Usable with new the operato
r | 554 attribute EventSourceConstructor EventSource; // Usable with new the operato
r |
| 555 | 555 |
| 556 // Mozilla has a separate XMLDocument object for XML documents. | 556 // Mozilla has a separate XMLDocument object for XML documents. |
| 557 // We just use Document for this. | 557 // We just use Document for this. |
| 558 attribute DocumentConstructor XMLDocument; | 558 attribute DocumentConstructor XMLDocument; |
| 559 attribute DOMParserConstructor DOMParser; | 559 attribute DOMParserConstructor DOMParser; |
| 560 attribute XMLSerializerConstructor XMLSerializer; | 560 attribute XMLSerializerConstructor XMLSerializer; |
| 561 attribute XMLHttpRequestConstructor XMLHttpRequest; // Usable with the new o
perator | 561 attribute XMLHttpRequestConstructor XMLHttpRequest; // Usable with the new o
perator |
| 562 attribute XMLHttpRequestUploadConstructor XMLHttpRequestUpload; | 562 attribute XMLHttpRequestUploadConstructor XMLHttpRequestUpload; |
| 563 attribute XMLHttpRequestExceptionConstructor XMLHttpRequestException; | 563 attribute XMLHttpRequestExceptionConstructor XMLHttpRequestException; |
| 564 [Conditional=XSLT] attribute XSLTProcessorConstructor XSLTProcessor; // Usab
le with the new operator | 564 attribute XSLTProcessorConstructor XSLTProcessor; // Usable with the new ope
rator |
| 565 | 565 |
| 566 #if defined(ENABLE_CHANNEL_MESSAGING) && ENABLE_CHANNEL_MESSAGING | 566 #if defined(ENABLE_CHANNEL_MESSAGING) && ENABLE_CHANNEL_MESSAGING |
| 567 attribute MessagePortConstructor MessagePort; | 567 attribute MessagePortConstructor MessagePort; |
| 568 attribute MessageChannelConstructor MessageChannel; // Usable with the new o
perator | 568 attribute MessageChannelConstructor MessageChannel; // Usable with the new o
perator |
| 569 #endif | 569 #endif |
| 570 | 570 |
| 571 attribute DOMPluginConstructor Plugin; | 571 attribute DOMPluginConstructor Plugin; |
| 572 attribute DOMPluginArrayConstructor PluginArray; | 572 attribute DOMPluginArrayConstructor PluginArray; |
| 573 | 573 |
| 574 attribute DOMMimeTypeConstructor MimeType; | 574 attribute DOMMimeTypeConstructor MimeType; |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 753 attribute MutationRecordConstructor MutationRecord; | 753 attribute MutationRecordConstructor MutationRecord; |
| 754 | 754 |
| 755 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; | 755 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; |
| 756 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; | 756 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; |
| 757 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; | 757 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; |
| 758 | 758 |
| 759 // window.toString() requires special handling in V8 | 759 // window.toString() requires special handling in V8 |
| 760 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 760 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
| 761 }; | 761 }; |
| 762 | 762 |
| OLD | NEW |