| 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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 // attribute DOMErrorConstructor DOMError; | 394 // attribute DOMErrorConstructor DOMError; |
| 395 // attribute DOMErrorHandlerConstructor DOMErrorHandler | 395 // attribute DOMErrorHandlerConstructor DOMErrorHandler |
| 396 // attribute DOMLocatorConstructor DOMLocator; | 396 // attribute DOMLocatorConstructor DOMLocator; |
| 397 // attribute DOMConfigurationConstructor DOMConfiguration; | 397 // attribute DOMConfigurationConstructor DOMConfiguration; |
| 398 attribute CDATASectionConstructor CDATASection; | 398 attribute CDATASectionConstructor CDATASection; |
| 399 attribute DocumentTypeConstructor DocumentType; | 399 attribute DocumentTypeConstructor DocumentType; |
| 400 attribute NotationConstructor Notation; | 400 attribute NotationConstructor Notation; |
| 401 attribute EntityConstructor Entity; | 401 attribute EntityConstructor Entity; |
| 402 attribute EntityReferenceConstructor EntityReference; | 402 attribute EntityReferenceConstructor EntityReference; |
| 403 attribute ProcessingInstructionConstructor ProcessingInstruction; | 403 attribute ProcessingInstructionConstructor ProcessingInstruction; |
| 404 [Conditional=SHADOW_DOM, V8EnabledAtRuntime=shadowDOM] attribute ShadowRootC
onstructor WebKitShadowRoot; |
| 404 [Conditional=SHADOW_DOM, V8EnabledAtRuntime=shadowDOM] attribute HTMLContent
ElementConstructor HTMLContentElement; | 405 [Conditional=SHADOW_DOM, V8EnabledAtRuntime=shadowDOM] attribute HTMLContent
ElementConstructor HTMLContentElement; |
| 405 [Conditional=SHADOW_DOM, V8EnabledAtRuntime=shadowDOM] attribute HTMLShadowE
lementConstructor HTMLShadowElement; | 406 [Conditional=SHADOW_DOM, V8EnabledAtRuntime=shadowDOM] attribute HTMLShadowE
lementConstructor HTMLShadowElement; |
| 406 | 407 |
| 407 attribute DOMSelectionConstructor Selection; | 408 attribute DOMSelectionConstructor Selection; |
| 408 attribute DOMWindowConstructor Window; | 409 attribute DOMWindowConstructor Window; |
| 409 | 410 |
| 410 attribute HTMLDocumentConstructor HTMLDocument; | 411 attribute HTMLDocumentConstructor HTMLDocument; |
| 411 attribute HTMLElementConstructor HTMLElement; | 412 attribute HTMLElementConstructor HTMLElement; |
| 412 attribute HTMLAnchorElementConstructor HTMLAnchorElement; | 413 attribute HTMLAnchorElementConstructor HTMLAnchorElement; |
| 413 attribute HTMLAppletElementConstructor HTMLAppletElement; | 414 attribute HTMLAppletElementConstructor HTMLAppletElement; |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 800 [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] attribute SourceB
ufferListConstructor WebKitSourceBufferList; | 801 [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] attribute SourceB
ufferListConstructor WebKitSourceBufferList; |
| 801 | 802 |
| 802 #endif // defined(LANGUAGE_JAVASCRIPT) | 803 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 803 | 804 |
| 804 #if defined(V8_BINDING) && V8_BINDING | 805 #if defined(V8_BINDING) && V8_BINDING |
| 805 // window.toString() requires special handling in V8 | 806 // window.toString() requires special handling in V8 |
| 806 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString
toString(); | 807 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString
toString(); |
| 807 #endif // defined(V8_BINDING) | 808 #endif // defined(V8_BINDING) |
| 808 }; | 809 }; |
| 809 | 810 |
| OLD | NEW |