| 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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 attribute HTMLUListElementConstructor HTMLUListElement; | 459 attribute HTMLUListElementConstructor HTMLUListElement; |
| 460 | 460 |
| 461 attribute HTMLCollectionConstructor HTMLCollection; | 461 attribute HTMLCollectionConstructor HTMLCollection; |
| 462 attribute HTMLAllCollectionConstructor HTMLAllCollection; | 462 attribute HTMLAllCollectionConstructor HTMLAllCollection; |
| 463 attribute [Conditional=MICRODATA] HTMLPropertiesCollectionConstructor HT
MLPropertiesCollection; | 463 attribute [Conditional=MICRODATA] HTMLPropertiesCollectionConstructor HT
MLPropertiesCollection; |
| 464 attribute HTMLUnknownElementConstructor HTMLUnknownElement; | 464 attribute HTMLUnknownElementConstructor HTMLUnknownElement; |
| 465 | 465 |
| 466 attribute [JSCustomGetter, CustomConstructor] HTMLImageElementConstructo
rConstructor Image; // Usable with new operator | 466 attribute [JSCustomGetter, CustomConstructor] HTMLImageElementConstructo
rConstructor Image; // Usable with new operator |
| 467 attribute [JSCustomGetter] HTMLOptionElementConstructorConstructor Optio
n; // Usable with new operator | 467 attribute [JSCustomGetter] HTMLOptionElementConstructorConstructor Optio
n; // Usable with new operator |
| 468 | 468 |
| 469 attribute [Conditional=ENCRYPTED_MEDIA, V8EnabledAtRuntime=encryptedMedi
a] MediaKeyErrorConstructor MediaKeyError; |
| 470 attribute [Conditional=ENCRYPTED_MEDIA, V8EnabledAtRuntime=encryptedMedi
a] MediaKeyEventConstructor MediaKeyEvent; |
| 471 |
| 469 attribute [Conditional=VIDEO_TRACK, V8EnabledAtRuntime=webkitVideoTrack]
HTMLTrackElementConstructor HTMLTrackElement; | 472 attribute [Conditional=VIDEO_TRACK, V8EnabledAtRuntime=webkitVideoTrack]
HTMLTrackElementConstructor HTMLTrackElement; |
| 470 attribute [Conditional=VIDEO_TRACK, V8EnabledAtRuntime=webkitVideoTrack]
TextTrackConstructor TextTrack; | 473 attribute [Conditional=VIDEO_TRACK, V8EnabledAtRuntime=webkitVideoTrack]
TextTrackConstructor TextTrack; |
| 471 attribute [Conditional=VIDEO_TRACK, V8EnabledAtRuntime=webkitVideoTrack]
TextTrackCueConstructor TextTrackCue; // Usable with the new operator | 474 attribute [Conditional=VIDEO_TRACK, V8EnabledAtRuntime=webkitVideoTrack]
TextTrackCueConstructor TextTrackCue; // Usable with the new operator |
| 472 attribute [Conditional=VIDEO_TRACK, V8EnabledAtRuntime=webkitVideoTrack]
TextTrackCueListConstructor TextTrackCueList; | 475 attribute [Conditional=VIDEO_TRACK, V8EnabledAtRuntime=webkitVideoTrack]
TextTrackCueListConstructor TextTrackCueList; |
| 473 attribute [Conditional=VIDEO_TRACK, V8EnabledAtRuntime=webkitVideoTrack]
TextTrackListConstructor TextTrackList; | 476 attribute [Conditional=VIDEO_TRACK, V8EnabledAtRuntime=webkitVideoTrack]
TextTrackListConstructor TextTrackList; |
| 474 attribute [Conditional=VIDEO_TRACK, V8EnabledAtRuntime=webkitVideoTrack]
TrackEventConstructor TrackEvent; | 477 attribute [Conditional=VIDEO_TRACK, V8EnabledAtRuntime=webkitVideoTrack]
TrackEventConstructor TrackEvent; |
| 475 | 478 |
| 476 attribute [JSCustomGetter, Conditional=VIDEO, V8EnabledAtRuntime] HTMLAu
dioElementConstructorConstructor Audio; // Usable with the new operator | 479 attribute [JSCustomGetter, Conditional=VIDEO, V8EnabledAtRuntime] HTMLAu
dioElementConstructorConstructor Audio; // Usable with the new operator |
| 477 attribute [Conditional=VIDEO, V8EnabledAtRuntime] HTMLAudioElementConstr
uctor HTMLAudioElement; | 480 attribute [Conditional=VIDEO, V8EnabledAtRuntime] HTMLAudioElementConstr
uctor HTMLAudioElement; |
| 478 attribute [Conditional=VIDEO, V8EnabledAtRuntime] HTMLMediaElementConstr
uctor HTMLMediaElement; | 481 attribute [Conditional=VIDEO, V8EnabledAtRuntime] HTMLMediaElementConstr
uctor HTMLMediaElement; |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 778 #endif // defined(LANGUAGE_JAVASCRIPT) | 781 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 779 | 782 |
| 780 #if defined(V8_BINDING) && V8_BINDING | 783 #if defined(V8_BINDING) && V8_BINDING |
| 781 // window.toString() requires special handling in V8 | 784 // window.toString() requires special handling in V8 |
| 782 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt
ring toString(); | 785 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt
ring toString(); |
| 783 #endif // defined(V8_BINDING) | 786 #endif // defined(V8_BINDING) |
| 784 }; | 787 }; |
| 785 | 788 |
| 786 } | 789 } |
| 787 | 790 |
| OLD | NEW |