| 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) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 55 |
| 56 [ImplementedAs=hasChildren] boolean hasChildNodes(); | 56 [ImplementedAs=hasChildren] boolean hasChildNodes(); |
| 57 [CustomElementCallbacks] Node cloneNode(optional boolean deep); | 57 [CustomElementCallbacks] Node cloneNode(optional boolean deep); |
| 58 [CustomElementCallbacks] void normalize(); | 58 [CustomElementCallbacks] void normalize(); |
| 59 | 59 |
| 60 // Introduced in DOM Level 2: | 60 // Introduced in DOM Level 2: |
| 61 [MeasureAs=NodeNamespaceURI] readonly attribute DOMString? namespaceURI; //
Moved to Element and Attr in DOM4. | 61 [MeasureAs=NodeNamespaceURI] readonly attribute DOMString? namespaceURI; //
Moved to Element and Attr in DOM4. |
| 62 [MeasureAs=NodeLocalName] readonly attribute DOMString? localName; // Moved
to Element and Attr in DOM4. | 62 [MeasureAs=NodeLocalName] readonly attribute DOMString? localName; // Moved
to Element and Attr in DOM4. |
| 63 | 63 |
| 64 // Introduced in DOM Level 3: | 64 // Introduced in DOM Level 3: |
| 65 readonly attribute DOMString? baseURI; | 65 [ExposeJSAccessors] readonly attribute DOMString? baseURI; |
| 66 | 66 |
| 67 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, TreatUndefinedAs=Nu
llString, CustomElementCallbacks] attribute DOMString textContent; | 67 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, TreatUndefinedAs=Nu
llString, CustomElementCallbacks] attribute DOMString textContent; |
| 68 | 68 |
| 69 [MeasureAs=NodeIsSameNode] boolean isSameNode([Default=Undefined] optional N
ode other); // Removed in DOM4. | 69 [MeasureAs=NodeIsSameNode] boolean isSameNode([Default=Undefined] optional N
ode other); // Removed in DOM4. |
| 70 boolean isEqualNode(Node other); | 70 boolean isEqualNode(Node other); |
| 71 DOMString? lookupPrefix(DOMString? namespaceURI); | 71 DOMString? lookupPrefix(DOMString? namespaceURI); |
| 72 boolean isDefaultNamespace(DOMString? namespaceURI); | 72 boolean isDefaultNamespace(DOMString? namespaceURI); |
| 73 DOMString? lookupNamespaceURI(DOMString? prefix); | 73 DOMString? lookupNamespaceURI(DOMString? prefix); |
| 74 | 74 |
| 75 // DocumentPosition | 75 // DocumentPosition |
| 76 const unsigned short DOCUMENT_POSITION_DISCONNECTED = 0x01; | 76 const unsigned short DOCUMENT_POSITION_DISCONNECTED = 0x01; |
| 77 const unsigned short DOCUMENT_POSITION_PRECEDING = 0x02; | 77 const unsigned short DOCUMENT_POSITION_PRECEDING = 0x02; |
| 78 const unsigned short DOCUMENT_POSITION_FOLLOWING = 0x04; | 78 const unsigned short DOCUMENT_POSITION_FOLLOWING = 0x04; |
| 79 const unsigned short DOCUMENT_POSITION_CONTAINS = 0x08; | 79 const unsigned short DOCUMENT_POSITION_CONTAINS = 0x08; |
| 80 const unsigned short DOCUMENT_POSITION_CONTAINED_BY = 0x10; | 80 const unsigned short DOCUMENT_POSITION_CONTAINED_BY = 0x10; |
| 81 const unsigned short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20; | 81 const unsigned short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20; |
| 82 | 82 |
| 83 unsigned short compareDocumentPosition(Node other); | 83 unsigned short compareDocumentPosition(Node other); |
| 84 | 84 |
| 85 // Introduced in DOM4 | 85 // Introduced in DOM4 |
| 86 boolean contains(Node other); | 86 boolean contains(Node other); |
| 87 | 87 |
| 88 // IE extensions | 88 // IE extensions |
| 89 [PerWorldBindings] readonly attribute Element parentElement; | 89 [PerWorldBindings] readonly attribute Element parentElement; |
| 90 }; | 90 }; |
| OLD | NEW |