| 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 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 753 attribute [Conditional=TOUCH_EVENTS] TouchEventConstructor TouchEvent; | 753 attribute [Conditional=TOUCH_EVENTS] TouchEventConstructor TouchEvent; |
| 754 | 754 |
| 755 attribute DOMFormDataConstructor FormData; | 755 attribute DOMFormDataConstructor FormData; |
| 756 | 756 |
| 757 attribute [Conditional=BLOB|FILE_WRITER] FileErrorConstructor FileError; | 757 attribute [Conditional=BLOB|FILE_WRITER] FileErrorConstructor FileError; |
| 758 attribute [Conditional=BLOB] FileReaderConstructor FileReader; | 758 attribute [Conditional=BLOB] FileReaderConstructor FileReader; |
| 759 | 759 |
| 760 attribute [Conditional=BLOB] BlobBuilderConstructor BlobBuilder; | 760 attribute [Conditional=BLOB] BlobBuilderConstructor BlobBuilder; |
| 761 | 761 |
| 762 #if defined(ENABLE_BLOB) && ENABLE_BLOB | 762 #if defined(ENABLE_BLOB) && ENABLE_BLOB |
| 763 DOMString createBlobURL(in Blob blob); | 763 [ConvertNullStringTo=Undefined] DOMString createBlobURL(in Blob blob); |
| 764 void revokeBlobURL(in DOMString blobURL); | 764 void revokeBlobURL(in DOMString blobURL); |
| 765 #endif | 765 #endif |
| 766 | 766 |
| 767 #endif // defined(LANGUAGE_JAVASCRIPT) | 767 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 768 | 768 |
| 769 #if defined(V8_BINDING) && V8_BINDING | 769 #if defined(V8_BINDING) && V8_BINDING |
| 770 // window.toString() requires special handling in V8 | 770 // window.toString() requires special handling in V8 |
| 771 [V8DoNotCheckSignature, DoNotCheckDomainSecurity, Custom, DontEnum] DOMS
tring toString(); | 771 [V8DoNotCheckSignature, DoNotCheckDomainSecurity, Custom, DontEnum] DOMS
tring toString(); |
| 772 #endif // defined(V8_BINDING) | 772 #endif // defined(V8_BINDING) |
| 773 }; | 773 }; |
| 774 | 774 |
| 775 } | 775 } |
| 776 | 776 |
| OLD | NEW |