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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 attribute HTMLFontElementConstructor HTMLFontElement; | 382 attribute HTMLFontElementConstructor HTMLFontElement; |
383 attribute HTMLFormElementConstructor HTMLFormElement; | 383 attribute HTMLFormElementConstructor HTMLFormElement; |
384 attribute HTMLFrameElementConstructor HTMLFrameElement; | 384 attribute HTMLFrameElementConstructor HTMLFrameElement; |
385 attribute HTMLFrameSetElementConstructor HTMLFrameSetElement; | 385 attribute HTMLFrameSetElementConstructor HTMLFrameSetElement; |
386 attribute HTMLHRElementConstructor HTMLHRElement; | 386 attribute HTMLHRElementConstructor HTMLHRElement; |
387 attribute HTMLHeadElementConstructor HTMLHeadElement; | 387 attribute HTMLHeadElementConstructor HTMLHeadElement; |
388 attribute HTMLHeadingElementConstructor HTMLHeadingElement; | 388 attribute HTMLHeadingElementConstructor HTMLHeadingElement; |
389 attribute HTMLHtmlElementConstructor HTMLHtmlElement; | 389 attribute HTMLHtmlElementConstructor HTMLHtmlElement; |
390 attribute HTMLIFrameElementConstructor HTMLIFrameElement; | 390 attribute HTMLIFrameElementConstructor HTMLIFrameElement; |
391 attribute HTMLImageElementConstructor HTMLImageElement; | 391 attribute HTMLImageElementConstructor HTMLImageElement; |
| 392 [Conditional=PICTURE] attribute HTMLPictureElementConstructor HTMLPictureEle
ment; |
392 attribute HTMLInputElementConstructor HTMLInputElement; | 393 attribute HTMLInputElementConstructor HTMLInputElement; |
393 attribute HTMLKeygenElementConstructor HTMLKeygenElement; | 394 attribute HTMLKeygenElementConstructor HTMLKeygenElement; |
394 attribute HTMLLIElementConstructor HTMLLIElement; | 395 attribute HTMLLIElementConstructor HTMLLIElement; |
395 attribute HTMLLabelElementConstructor HTMLLabelElement; | 396 attribute HTMLLabelElementConstructor HTMLLabelElement; |
396 attribute HTMLLegendElementConstructor HTMLLegendElement; | 397 attribute HTMLLegendElementConstructor HTMLLegendElement; |
397 attribute HTMLLinkElementConstructor HTMLLinkElement; | 398 attribute HTMLLinkElementConstructor HTMLLinkElement; |
398 attribute HTMLMapElementConstructor HTMLMapElement; | 399 attribute HTMLMapElementConstructor HTMLMapElement; |
399 attribute HTMLMarqueeElementConstructor HTMLMarqueeElement; | 400 attribute HTMLMarqueeElementConstructor HTMLMarqueeElement; |
400 attribute HTMLMenuElementConstructor HTMLMenuElement; | 401 attribute HTMLMenuElementConstructor HTMLMenuElement; |
401 attribute HTMLMetaElementConstructor HTMLMetaElement; | 402 attribute HTMLMetaElementConstructor HTMLMetaElement; |
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
750 attribute MutationRecordConstructor MutationRecord; | 751 attribute MutationRecordConstructor MutationRecord; |
751 | 752 |
752 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; | 753 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; |
753 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; | 754 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; |
754 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; | 755 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; |
755 | 756 |
756 // window.toString() requires special handling in V8 | 757 // window.toString() requires special handling in V8 |
757 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 758 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
758 }; | 759 }; |
759 | 760 |
OLD | NEW |