| 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 760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 771 | 771 |
| 772 attribute DOMFormDataConstructor FormData; | 772 attribute DOMFormDataConstructor FormData; |
| 773 | 773 |
| 774 attribute [Conditional=BLOB|FILE_SYSTEM] FileErrorConstructor FileError; | 774 attribute [Conditional=BLOB|FILE_SYSTEM] FileErrorConstructor FileError; |
| 775 attribute [Conditional=BLOB] FileReaderConstructor FileReader; | 775 attribute [Conditional=BLOB] FileReaderConstructor FileReader; |
| 776 | 776 |
| 777 attribute [Conditional=BLOB&LEGACY_WEBKIT_BLOB_BUILDER] WebKitBlobBuilde
rConstructor WebKitBlobBuilder; | 777 attribute [Conditional=BLOB&LEGACY_WEBKIT_BLOB_BUILDER] WebKitBlobBuilde
rConstructor WebKitBlobBuilder; |
| 778 | 778 |
| 779 attribute [Conditional=BLOB] DOMURLConstructor webkitURL; | 779 attribute [Conditional=BLOB] DOMURLConstructor webkitURL; |
| 780 | 780 |
| 781 #if defined(ENABLE_QUOTA) && ENABLE_QUOTA | |
| 782 readonly attribute [V8EnabledAtRuntime=Quota] StorageInfo webkitStorageI
nfo; | |
| 783 #endif | |
| 784 | |
| 785 attribute [Conditional=MUTATION_OBSERVERS] WebKitMutationObserverConstru
ctor WebKitMutationObserver; | 781 attribute [Conditional=MUTATION_OBSERVERS] WebKitMutationObserverConstru
ctor WebKitMutationObserver; |
| 786 | 782 |
| 787 #endif // defined(LANGUAGE_JAVASCRIPT) | 783 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 788 | 784 |
| 789 #if defined(V8_BINDING) && V8_BINDING | 785 #if defined(V8_BINDING) && V8_BINDING |
| 790 // window.toString() requires special handling in V8 | 786 // window.toString() requires special handling in V8 |
| 791 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt
ring toString(); | 787 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt
ring toString(); |
| 792 #endif // defined(V8_BINDING) | 788 #endif // defined(V8_BINDING) |
| 793 }; | 789 }; |
| 794 | 790 |
| 795 } | 791 } |
| 796 | 792 |
| OLD | NEW |