| 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 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 | 479 |
| 480 attribute [JSCustomGetter, Conditional=VIDEO, V8EnabledAtRuntime] HTMLAu
dioElementConstructorConstructor Audio; // Usable with the new operator | 480 attribute [JSCustomGetter, Conditional=VIDEO, V8EnabledAtRuntime] HTMLAu
dioElementConstructorConstructor Audio; // Usable with the new operator |
| 481 attribute [Conditional=VIDEO, V8EnabledAtRuntime] HTMLAudioElementConstr
uctor HTMLAudioElement; | 481 attribute [Conditional=VIDEO, V8EnabledAtRuntime] HTMLAudioElementConstr
uctor HTMLAudioElement; |
| 482 attribute [Conditional=VIDEO, V8EnabledAtRuntime] HTMLMediaElementConstr
uctor HTMLMediaElement; | 482 attribute [Conditional=VIDEO, V8EnabledAtRuntime] HTMLMediaElementConstr
uctor HTMLMediaElement; |
| 483 attribute [Conditional=VIDEO, V8EnabledAtRuntime] HTMLVideoElementConstr
uctor HTMLVideoElement; | 483 attribute [Conditional=VIDEO, V8EnabledAtRuntime] HTMLVideoElementConstr
uctor HTMLVideoElement; |
| 484 attribute [Conditional=VIDEO, V8EnabledAtRuntime] MediaErrorConstructor
MediaError; | 484 attribute [Conditional=VIDEO, V8EnabledAtRuntime] MediaErrorConstructor
MediaError; |
| 485 attribute [Conditional=VIDEO, V8EnabledAtRuntime] TimeRangesConstructor
TimeRanges; | 485 attribute [Conditional=VIDEO, V8EnabledAtRuntime] TimeRangesConstructor
TimeRanges; |
| 486 attribute [Conditional=VIDEO, V8EnabledAtRuntime] HTMLSourceElementConst
ructor HTMLSourceElement; | 486 attribute [Conditional=VIDEO, V8EnabledAtRuntime] HTMLSourceElementConst
ructor HTMLSourceElement; |
| 487 attribute [Conditional=VIDEO, V8EnabledAtRuntime] MediaControllerConstru
ctor MediaController; | 487 attribute [Conditional=VIDEO, V8EnabledAtRuntime] MediaControllerConstru
ctor MediaController; |
| 488 | 488 |
| 489 attribute [Conditional=WEB_INTENTS_TAG] HTMLIntentElementConstructor HTM
LIntentElement; |
| 490 |
| 489 attribute CanvasPatternConstructor CanvasPattern; | 491 attribute CanvasPatternConstructor CanvasPattern; |
| 490 attribute CanvasGradientConstructor CanvasGradient; | 492 attribute CanvasGradientConstructor CanvasGradient; |
| 491 attribute CanvasRenderingContext2DConstructor CanvasRenderingContext2D; | 493 attribute CanvasRenderingContext2DConstructor CanvasRenderingContext2D; |
| 492 | 494 |
| 493 attribute ImageDataConstructor ImageData; | 495 attribute ImageDataConstructor ImageData; |
| 494 attribute TextMetricsConstructor TextMetrics; | 496 attribute TextMetricsConstructor TextMetrics; |
| 495 | 497 |
| 496 attribute [Conditional=WEBGL] WebGLActiveInfoConstructor WebGLActiveInfo
; | 498 attribute [Conditional=WEBGL] WebGLActiveInfoConstructor WebGLActiveInfo
; |
| 497 attribute [Conditional=WEBGL] WebGLBufferConstructor WebGLBuffer; | 499 attribute [Conditional=WEBGL] WebGLBufferConstructor WebGLBuffer; |
| 498 attribute [Conditional=WEBGL] WebGLFramebufferConstructor WebGLFramebuff
er; | 500 attribute [Conditional=WEBGL] WebGLFramebufferConstructor WebGLFramebuff
er; |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 #endif // defined(LANGUAGE_JAVASCRIPT) | 784 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 783 | 785 |
| 784 #if defined(V8_BINDING) && V8_BINDING | 786 #if defined(V8_BINDING) && V8_BINDING |
| 785 // window.toString() requires special handling in V8 | 787 // window.toString() requires special handling in V8 |
| 786 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt
ring toString(); | 788 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt
ring toString(); |
| 787 #endif // defined(V8_BINDING) | 789 #endif // defined(V8_BINDING) |
| 788 }; | 790 }; |
| 789 | 791 |
| 790 } | 792 } |
| 791 | 793 |
| OLD | NEW |