| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 attribute FileReaderConstructor FileReader; | 86 attribute FileReaderConstructor FileReader; |
| 87 attribute FileReaderSyncConstructor FileReaderSync; | 87 attribute FileReaderSyncConstructor FileReaderSync; |
| 88 #endif | 88 #endif |
| 89 | 89 |
| 90 [Conditional=BLOB] attribute DOMURLConstructor URL; | 90 [Conditional=BLOB] attribute DOMURLConstructor URL; |
| 91 [Conditional=BLOB] attribute DOMURLConstructor webkitURL; // FIXME: deprecat
e this. | 91 [Conditional=BLOB] attribute DOMURLConstructor webkitURL; // FIXME: deprecat
e this. |
| 92 | 92 |
| 93 attribute ArrayBufferConstructor ArrayBuffer; // Usable with new operator | 93 attribute ArrayBufferConstructor ArrayBuffer; // Usable with new operator |
| 94 attribute Int8ArrayConstructor Int8Array; // Usable with new operator | 94 attribute Int8ArrayConstructor Int8Array; // Usable with new operator |
| 95 attribute Uint8ArrayConstructor Uint8Array; // Usable with new operator | 95 attribute Uint8ArrayConstructor Uint8Array; // Usable with new operator |
| 96 attribute Uint8ArrayConstructor Uint8ClampedArray; // Usable with new operat
or | 96 attribute Uint8ClampedArrayConstructor Uint8ClampedArray; // Usable with new
operator |
| 97 attribute Int16ArrayConstructor Int16Array; // Usable with new operator | 97 attribute Int16ArrayConstructor Int16Array; // Usable with new operator |
| 98 attribute Uint16ArrayConstructor Uint16Array; // Usable with new operator | 98 attribute Uint16ArrayConstructor Uint16Array; // Usable with new operator |
| 99 attribute Int32ArrayConstructor Int32Array; // Usable with new operator | 99 attribute Int32ArrayConstructor Int32Array; // Usable with new operator |
| 100 attribute Uint32ArrayConstructor Uint32Array; // Usable with new operator | 100 attribute Uint32ArrayConstructor Uint32Array; // Usable with new operator |
| 101 attribute Float32ArrayConstructor Float32Array; // Usable with new operator | 101 attribute Float32ArrayConstructor Float32Array; // Usable with new operator |
| 102 attribute Float64ArrayConstructor Float64Array; // Usable with new operator | 102 attribute Float64ArrayConstructor Float64Array; // Usable with new operator |
| 103 attribute DataViewConstructor DataView; // Usable with new operator | 103 attribute DataViewConstructor DataView; // Usable with new operator |
| 104 }; | 104 }; |
| 105 | 105 |
| OLD | NEW |