| 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 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 attribute ImageDataConstructor ImageData; | 489 attribute ImageDataConstructor ImageData; |
| 490 attribute TextMetricsConstructor TextMetrics; | 490 attribute TextMetricsConstructor TextMetrics; |
| 491 | 491 |
| 492 attribute [Conditional=WEBGL] WebGLActiveInfoConstructor WebGLActiveInfo
; | 492 attribute [Conditional=WEBGL] WebGLActiveInfoConstructor WebGLActiveInfo
; |
| 493 attribute [Conditional=WEBGL] WebGLBufferConstructor WebGLBuffer; | 493 attribute [Conditional=WEBGL] WebGLBufferConstructor WebGLBuffer; |
| 494 attribute [Conditional=WEBGL] WebGLFramebufferConstructor WebGLFramebuff
er; | 494 attribute [Conditional=WEBGL] WebGLFramebufferConstructor WebGLFramebuff
er; |
| 495 attribute [Conditional=WEBGL] WebGLProgramConstructor WebGLProgram; | 495 attribute [Conditional=WEBGL] WebGLProgramConstructor WebGLProgram; |
| 496 attribute [Conditional=WEBGL] WebGLRenderbufferConstructor WebGLRenderbu
ffer; | 496 attribute [Conditional=WEBGL] WebGLRenderbufferConstructor WebGLRenderbu
ffer; |
| 497 attribute [Conditional=WEBGL] WebGLRenderingContextConstructor WebGLRend
eringContext; | 497 attribute [Conditional=WEBGL] WebGLRenderingContextConstructor WebGLRend
eringContext; |
| 498 attribute [Conditional=WEBGL] WebGLShaderConstructor WebGLShader; | 498 attribute [Conditional=WEBGL] WebGLShaderConstructor WebGLShader; |
| 499 attribute [Conditional=WEBGL] WebGLShaderPrecisionFormatConstructor WebG
LShaderPrecisionFormat; |
| 499 attribute [Conditional=WEBGL] WebGLTextureConstructor WebGLTexture; | 500 attribute [Conditional=WEBGL] WebGLTextureConstructor WebGLTexture; |
| 500 attribute [Conditional=WEBGL] WebGLUniformLocationConstructor WebGLUnifo
rmLocation; | 501 attribute [Conditional=WEBGL] WebGLUniformLocationConstructor WebGLUnifo
rmLocation; |
| 501 | 502 |
| 502 attribute DOMStringMapConstructor DOMStringMap; | 503 attribute DOMStringMapConstructor DOMStringMap; |
| 503 | 504 |
| 504 attribute ArrayBufferConstructor ArrayBuffer; // Usable with new operato
r | 505 attribute ArrayBufferConstructor ArrayBuffer; // Usable with new operato
r |
| 505 attribute Int8ArrayConstructor Int8Array; // Usable with new operator | 506 attribute Int8ArrayConstructor Int8Array; // Usable with new operator |
| 506 attribute Uint8ArrayConstructor Uint8Array; // Usable with new operator | 507 attribute Uint8ArrayConstructor Uint8Array; // Usable with new operator |
| 507 attribute Uint8ClampedArrayConstructor Uint8ClampedArray; // Usable with
new operator | 508 attribute Uint8ClampedArrayConstructor Uint8ClampedArray; // Usable with
new operator |
| 508 attribute Int16ArrayConstructor Int16Array; // Usable with new operator | 509 attribute Int16ArrayConstructor Int16Array; // Usable with new operator |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 #endif // defined(LANGUAGE_JAVASCRIPT) | 778 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 778 | 779 |
| 779 #if defined(V8_BINDING) && V8_BINDING | 780 #if defined(V8_BINDING) && V8_BINDING |
| 780 // window.toString() requires special handling in V8 | 781 // window.toString() requires special handling in V8 |
| 781 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt
ring toString(); | 782 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt
ring toString(); |
| 782 #endif // defined(V8_BINDING) | 783 #endif // defined(V8_BINDING) |
| 783 }; | 784 }; |
| 784 | 785 |
| 785 } | 786 } |
| 786 | 787 |
| OLD | NEW |