| 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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 | 537 |
| 538 attribute WorkerConstructor Worker; // Usable with the new operator | 538 attribute WorkerConstructor Worker; // Usable with the new operator |
| 539 [EnabledAtRuntime] attribute SharedWorkerConstructor SharedWorker; // Usable
with the new operator | 539 [EnabledAtRuntime] attribute SharedWorkerConstructor SharedWorker; // Usable
with the new operator |
| 540 | 540 |
| 541 attribute FileConstructor File; | 541 attribute FileConstructor File; |
| 542 attribute FileListConstructor FileList; | 542 attribute FileListConstructor FileList; |
| 543 attribute BlobConstructor Blob; | 543 attribute BlobConstructor Blob; |
| 544 | 544 |
| 545 attribute NodeFilterConstructor NodeFilter; | 545 attribute NodeFilterConstructor NodeFilter; |
| 546 attribute RangeConstructor Range; | 546 attribute RangeConstructor Range; |
| 547 attribute RangeExceptionConstructor RangeException; | |
| 548 | 547 |
| 549 attribute EventSourceConstructor EventSource; // Usable with new the operato
r | 548 attribute EventSourceConstructor EventSource; // Usable with new the operato
r |
| 550 | 549 |
| 551 // Mozilla has a separate XMLDocument object for XML documents. | 550 // Mozilla has a separate XMLDocument object for XML documents. |
| 552 // We just use Document for this. | 551 // We just use Document for this. |
| 553 attribute DocumentConstructor XMLDocument; | 552 attribute DocumentConstructor XMLDocument; |
| 554 attribute DOMParserConstructor DOMParser; | 553 attribute DOMParserConstructor DOMParser; |
| 555 attribute XMLSerializerConstructor XMLSerializer; | 554 attribute XMLSerializerConstructor XMLSerializer; |
| 556 attribute XMLHttpRequestConstructor XMLHttpRequest; // Usable with the new o
perator | 555 attribute XMLHttpRequestConstructor XMLHttpRequest; // Usable with the new o
perator |
| 557 attribute XMLHttpRequestUploadConstructor XMLHttpRequestUpload; | 556 attribute XMLHttpRequestUploadConstructor XMLHttpRequestUpload; |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 attribute MutationRecordConstructor MutationRecord; | 744 attribute MutationRecordConstructor MutationRecord; |
| 746 | 745 |
| 747 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; | 746 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; |
| 748 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; | 747 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; |
| 749 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; | 748 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; |
| 750 | 749 |
| 751 // window.toString() requires special handling in V8 | 750 // window.toString() requires special handling in V8 |
| 752 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 751 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
| 753 }; | 752 }; |
| 754 | 753 |
| OLD | NEW |