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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 | 73 |
74 DOMString? lookupPrefix(DOMString? namespaceURI); | 74 DOMString? lookupPrefix(DOMString? namespaceURI); |
75 DOMString? lookupNamespaceURI(DOMString? prefix); | 75 DOMString? lookupNamespaceURI(DOMString? prefix); |
76 boolean isDefaultNamespace(DOMString? namespaceURI); | 76 boolean isDefaultNamespace(DOMString? namespaceURI); |
77 | 77 |
78 [CustomElementCallbacks, PerWorldBindings, RaisesException] Node insertBefor
e(Node node, Node? child); | 78 [CustomElementCallbacks, PerWorldBindings, RaisesException] Node insertBefor
e(Node node, Node? child); |
79 [CustomElementCallbacks, PerWorldBindings, RaisesException] Node appendChild
(Node node); | 79 [CustomElementCallbacks, PerWorldBindings, RaisesException] Node appendChild
(Node node); |
80 [CustomElementCallbacks, PerWorldBindings, RaisesException] Node replaceChil
d(Node node, Node child); | 80 [CustomElementCallbacks, PerWorldBindings, RaisesException] Node replaceChil
d(Node node, Node child); |
81 [CustomElementCallbacks, RaisesException] Node removeChild(Node child); | 81 [CustomElementCallbacks, RaisesException] Node removeChild(Node child); |
82 | 82 |
83 // FIXME: namespaceURI and localName have been moved to Element and Attr. | |
84 [MeasureAs=NodeNamespaceURI] readonly attribute DOMString? namespaceURI; | |
85 [MeasureAs=NodeLocalName] readonly attribute DOMString? localName; | |
86 | |
87 // FIXME: isSameNode has been removed from the spec: | 83 // FIXME: isSameNode has been removed from the spec: |
88 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=27424 | 84 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=27424 |
89 [MeasureAs=NodeIsSameNode] boolean isSameNode(Node? other); | 85 [MeasureAs=NodeIsSameNode] boolean isSameNode(Node? other); |
90 }; | 86 }; |
OLD | NEW |