| 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 HTMLScriptElementConstructor HTMLScriptElement; | 459 attribute HTMLScriptElementConstructor HTMLScriptElement; |
| 460 attribute HTMLSelectElementConstructor HTMLSelectElement; | 460 attribute HTMLSelectElementConstructor HTMLSelectElement; |
| 461 attribute HTMLSpanElementConstructor HTMLSpanElement; | 461 attribute HTMLSpanElementConstructor HTMLSpanElement; |
| 462 attribute HTMLStyleElementConstructor HTMLStyleElement; | 462 attribute HTMLStyleElementConstructor HTMLStyleElement; |
| 463 attribute HTMLTableCaptionElementConstructor HTMLTableCaptionElement; | 463 attribute HTMLTableCaptionElementConstructor HTMLTableCaptionElement; |
| 464 attribute HTMLTableCellElementConstructor HTMLTableCellElement; | 464 attribute HTMLTableCellElementConstructor HTMLTableCellElement; |
| 465 attribute HTMLTableColElementConstructor HTMLTableColElement; | 465 attribute HTMLTableColElementConstructor HTMLTableColElement; |
| 466 attribute HTMLTableElementConstructor HTMLTableElement; | 466 attribute HTMLTableElementConstructor HTMLTableElement; |
| 467 attribute HTMLTableRowElementConstructor HTMLTableRowElement; | 467 attribute HTMLTableRowElementConstructor HTMLTableRowElement; |
| 468 attribute HTMLTableSectionElementConstructor HTMLTableSectionElement; | 468 attribute HTMLTableSectionElementConstructor HTMLTableSectionElement; |
| 469 attribute [Conditional=TEMPLATE_ELEMENT] HTMLTemplateElementConstructor HTML
TemplateElement; | 469 attribute HTMLTemplateElementConstructor HTMLTemplateElement; |
| 470 attribute HTMLTextAreaElementConstructor HTMLTextAreaElement; | 470 attribute HTMLTextAreaElementConstructor HTMLTextAreaElement; |
| 471 attribute HTMLTitleElementConstructor HTMLTitleElement; | 471 attribute HTMLTitleElementConstructor HTMLTitleElement; |
| 472 attribute HTMLUListElementConstructor HTMLUListElement; | 472 attribute HTMLUListElementConstructor HTMLUListElement; |
| 473 | 473 |
| 474 attribute HTMLCollectionConstructor HTMLCollection; | 474 attribute HTMLCollectionConstructor HTMLCollection; |
| 475 attribute HTMLAllCollectionConstructor HTMLAllCollection; | 475 attribute HTMLAllCollectionConstructor HTMLAllCollection; |
| 476 attribute HTMLFormControlsCollectionConstructor HTMLFormControlsCollection; | 476 attribute HTMLFormControlsCollectionConstructor HTMLFormControlsCollection; |
| 477 attribute HTMLOptionsCollectionConstructor HTMLOptionsCollection; | 477 attribute HTMLOptionsCollectionConstructor HTMLOptionsCollection; |
| 478 [Conditional=MICRODATA] attribute HTMLPropertiesCollectionConstructor HTMLPr
opertiesCollection; | 478 [Conditional=MICRODATA] attribute HTMLPropertiesCollectionConstructor HTMLPr
opertiesCollection; |
| 479 attribute HTMLUnknownElementConstructor HTMLUnknownElement; | 479 attribute HTMLUnknownElementConstructor HTMLUnknownElement; |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] attribute SourceB
ufferListConstructor WebKitSourceBufferList; | 802 [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] attribute SourceB
ufferListConstructor WebKitSourceBufferList; |
| 803 | 803 |
| 804 #endif // defined(LANGUAGE_JAVASCRIPT) | 804 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 805 | 805 |
| 806 #if defined(V8_BINDING) && V8_BINDING | 806 #if defined(V8_BINDING) && V8_BINDING |
| 807 // window.toString() requires special handling in V8 | 807 // window.toString() requires special handling in V8 |
| 808 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString
toString(); | 808 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString
toString(); |
| 809 #endif // defined(V8_BINDING) | 809 #endif // defined(V8_BINDING) |
| 810 }; | 810 }; |
| 811 | 811 |
| OLD | NEW |