| 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 * | 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 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 | 517 |
| 518 attribute ClientRectConstructor ClientRect; | 518 attribute ClientRectConstructor ClientRect; |
| 519 attribute ClientRectListConstructor ClientRectList; | 519 attribute ClientRectListConstructor ClientRectList; |
| 520 | 520 |
| 521 #if defined(ENABLE_DOM_STORAGE) && ENABLE_DOM_STORAGE | 521 #if defined(ENABLE_DOM_STORAGE) && ENABLE_DOM_STORAGE |
| 522 attribute StorageConstructor Storage; | 522 attribute StorageConstructor Storage; |
| 523 attribute StorageEventConstructor StorageEvent; | 523 attribute StorageEventConstructor StorageEvent; |
| 524 #endif | 524 #endif |
| 525 | 525 |
| 526 attribute [CustomGetter,Conditional=VIDEO,EnabledAtRuntime] HTMLAudioEle
mentConstructor Audio; // Usable with the new operator | 526 attribute [CustomGetter,Conditional=VIDEO,EnabledAtRuntime] HTMLAudioEle
mentConstructor Audio; // Usable with the new operator |
| 527 attribute [Conditional=VIDEO] HTMLAudioElementConstructor HTMLAudioEleme
nt; | 527 attribute [Conditional=VIDEO,EnabledAtRuntime] HTMLAudioElementConstruct
or HTMLAudioElement; |
| 528 attribute [Conditional=VIDEO] HTMLMediaElementConstructor HTMLMediaEleme
nt; | 528 attribute [Conditional=VIDEO,EnabledAtRuntime] HTMLMediaElementConstruct
or HTMLMediaElement; |
| 529 attribute [Conditional=VIDEO] HTMLVideoElementConstructor HTMLVideoEleme
nt; | 529 attribute [Conditional=VIDEO,EnabledAtRuntime] HTMLVideoElementConstruct
or HTMLVideoElement; |
| 530 attribute [Conditional=VIDEO] MediaErrorConstructor MediaError; | 530 attribute [Conditional=VIDEO,EnabledAtRuntime] MediaErrorConstructor Med
iaError; |
| 531 | 531 |
| 532 #if defined(ENABLE_XPATH) && ENABLE_XPATH | 532 #if defined(ENABLE_XPATH) && ENABLE_XPATH |
| 533 attribute XPathEvaluatorConstructor XPathEvaluator; | 533 attribute XPathEvaluatorConstructor XPathEvaluator; |
| 534 attribute XPathResultConstructor XPathResult; | 534 attribute XPathResultConstructor XPathResult; |
| 535 attribute XPathExceptionConstructor XPathException; | 535 attribute XPathExceptionConstructor XPathException; |
| 536 #endif | 536 #endif |
| 537 | 537 |
| 538 #if defined(ENABLE_SVG) && ENABLE_SVG | 538 #if defined(ENABLE_SVG) && ENABLE_SVG |
| 539 attribute SVGAngleConstructor SVGAngle; | 539 attribute SVGAngleConstructor SVGAngle; |
| 540 attribute SVGColorConstructor SVGColor; | 540 attribute SVGColorConstructor SVGColor; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 567 | 567 |
| 568 #endif // defined(LANGUAGE_JAVASCRIPT) | 568 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 569 | 569 |
| 570 #if defined(V8_BINDING) && V8_BINDING | 570 #if defined(V8_BINDING) && V8_BINDING |
| 571 // window.toString() requires special handling in V8 | 571 // window.toString() requires special handling in V8 |
| 572 [V8DoNotCheckSignature, DoNotCheckDomainSecurity, Custom, DontEnum] DOMS
tring toString(); | 572 [V8DoNotCheckSignature, DoNotCheckDomainSecurity, Custom, DontEnum] DOMS
tring toString(); |
| 573 #endif // defined(V8_BINDING) | 573 #endif // defined(V8_BINDING) |
| 574 }; | 574 }; |
| 575 | 575 |
| 576 } | 576 } |
| OLD | NEW |