Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: core/dom/Node.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/dom/NamedNodeMap.idl ('k') | core/dom/NodeFilter.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 // https://dom.spec.whatwg.org/#interface-node
22
21 [ 23 [
22 Custom=Wrap,
23 DependentLifetime, 24 DependentLifetime,
25 TypeChecking=Interface,
24 ] interface Node : EventTarget { 26 ] interface Node : EventTarget {
25 // NodeType 27 const unsigned short ELEMENT_NODE = 1;
26 const unsigned short ELEMENT_NODE = 1; 28 // FIXME: Attr should not inherit from Node. crbug.com/305105
27 const unsigned short ATTRIBUTE_NODE = 2; 29 const unsigned short ATTRIBUTE_NODE = 2;
28 const unsigned short TEXT_NODE = 3; 30 const unsigned short TEXT_NODE = 3;
29 const unsigned short CDATA_SECTION_NODE = 4; 31 // FIXME: CDATASection has been removed from the spec. crbug.com/437205
30 const unsigned short ENTITY_REFERENCE_NODE = 5; // EntityRefer ence nodes are impossible to create in WebKit. 32 const unsigned short CDATA_SECTION_NODE = 4;
31 const unsigned short ENTITY_NODE = 6; 33 const unsigned short ENTITY_REFERENCE_NODE = 5; // historical
32 const unsigned short PROCESSING_INSTRUCTION_NODE = 7; 34 const unsigned short ENTITY_NODE = 6; // historical
33 const unsigned short COMMENT_NODE = 8; 35 const unsigned short PROCESSING_INSTRUCTION_NODE = 7;
34 const unsigned short DOCUMENT_NODE = 9; 36 const unsigned short COMMENT_NODE = 8;
35 const unsigned short DOCUMENT_TYPE_NODE = 10; 37 const unsigned short DOCUMENT_NODE = 9;
36 const unsigned short DOCUMENT_FRAGMENT_NODE = 11; 38 const unsigned short DOCUMENT_TYPE_NODE = 10;
37 const unsigned short NOTATION_NODE = 12; 39 const unsigned short DOCUMENT_FRAGMENT_NODE = 11;
38 40 const unsigned short NOTATION_NODE = 12; // historical
41 readonly attribute unsigned short nodeType;
39 readonly attribute DOMString nodeName; 42 readonly attribute DOMString nodeName;
40 43
44 readonly attribute DOMString? baseURI;
45
46 [PerWorldBindings] readonly attribute Document? ownerDocument;
47 [PerWorldBindings] readonly attribute Node? parentNode;
48 [PerWorldBindings] readonly attribute Element? parentElement;
49 [ImplementedAs=hasChildren] boolean hasChildNodes();
50 [SameObject, PerWorldBindings] readonly attribute NodeList childNodes;
51 [PerWorldBindings] readonly attribute Node? firstChild;
52 [PerWorldBindings] readonly attribute Node? lastChild;
53 [PerWorldBindings] readonly attribute Node? previousSibling;
54 [PerWorldBindings] readonly attribute Node? nextSibling;
55
41 [CustomElementCallbacks] attribute DOMString? nodeValue; 56 [CustomElementCallbacks] attribute DOMString? nodeValue;
42 57 // FIXME: textContent should not have [TreatUndefinedAs=NullString].
43 [DartNoAutoScope] readonly attribute unsigned short nodeType; 58 [TreatUndefinedAs=NullString, CustomElementCallbacks] attribute DOMString? t extContent;
44 [PerWorldBindings] readonly attribute Node parentNode;
45 [PerWorldBindings, DartNoAutoScope] readonly attribute NodeList chil dNodes;
46 [PerWorldBindings, DartNoAutoScope] readonly attribute Node firs tChild;
47 [PerWorldBindings, DartNoAutoScope] readonly attribute Node last Child;
48 [PerWorldBindings, DartNoAutoScope] readonly attribute Node prev iousSibling;
49 [PerWorldBindings, DartNoAutoScope] readonly attribute Node next Sibling;
50 [PerWorldBindings] readonly attribute Document ownerDocument;
51
52 [CustomElementCallbacks, PerWorldBindings, RaisesException, TypeChecking=Int erface] Node insertBefore(Node newChild, Node? refChild);
53 [CustomElementCallbacks, PerWorldBindings, RaisesException, TypeChecking=Int erface] Node replaceChild(Node newChild, Node oldChild);
54 [CustomElementCallbacks, RaisesException, TypeChecking=Interface] Node remov eChild(Node oldChild);
55 [CustomElementCallbacks, PerWorldBindings, RaisesException, TypeChecking=Int erface] Node appendChild(Node newChild);
56
57 [ImplementedAs=hasChildren] boolean hasChildNodes();
58 [CustomElementCallbacks, DartCustom] Node cloneNode(optional boolean deep);
59 [CustomElementCallbacks] void normalize(); 59 [CustomElementCallbacks] void normalize();
60 60
61 // Introduced in DOM Level 2: 61 // FIXME: The deep argument should have a default value false.
62 [MeasureAs=NodeNamespaceURI] readonly attribute DOMString? namespaceURI; // Moved to Element and Attr in DOM4. 62 [NewObject, CustomElementCallbacks] Node cloneNode(optional boolean deep);
63 [MeasureAs=NodeLocalName] readonly attribute DOMString? localName; // Moved to Element and Attr in DOM4. 63 boolean isEqualNode(Node? node);
64 64
65 // Introduced in DOM Level 3: 65 const unsigned short DOCUMENT_POSITION_DISCONNECTED = 0x01;
66 readonly attribute DOMString? baseURI; 66 const unsigned short DOCUMENT_POSITION_PRECEDING = 0x02;
67 const unsigned short DOCUMENT_POSITION_FOLLOWING = 0x04;
68 const unsigned short DOCUMENT_POSITION_CONTAINS = 0x08;
69 const unsigned short DOCUMENT_POSITION_CONTAINED_BY = 0x10;
70 const unsigned short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20;
71 unsigned short compareDocumentPosition(Node other);
72 boolean contains(Node? other);
67 73
68 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, TreatUndefinedAs=Nu llString, CustomElementCallbacks] attribute DOMString textContent; 74 DOMString? lookupPrefix(DOMString? namespaceURI);
75 DOMString? lookupNamespaceURI(DOMString? prefix);
76 boolean isDefaultNamespace(DOMString? namespaceURI);
69 77
70 [MeasureAs=NodeIsSameNode] boolean isSameNode([Default=Undefined] optional N ode other); // Removed in DOM4. 78 [CustomElementCallbacks, PerWorldBindings, RaisesException] Node insertBefor e(Node node, Node? child);
71 boolean isEqualNode(Node other); 79 [CustomElementCallbacks, PerWorldBindings, RaisesException] Node appendChild (Node node);
72 DOMString? lookupPrefix(DOMString? namespaceURI); 80 [CustomElementCallbacks, PerWorldBindings, RaisesException] Node replaceChil d(Node node, Node child);
73 boolean isDefaultNamespace(DOMString? namespaceURI); 81 [CustomElementCallbacks, RaisesException] Node removeChild(Node child);
74 DOMString? lookupNamespaceURI(DOMString? prefix);
75 82
76 // DocumentPosition 83 // FIXME: namespaceURI and localName have been moved to Element and Attr.
77 const unsigned short DOCUMENT_POSITION_DISCONNECTED = 0x01; 84 [MeasureAs=NodeNamespaceURI] readonly attribute DOMString? namespaceURI;
78 const unsigned short DOCUMENT_POSITION_PRECEDING = 0x02; 85 [MeasureAs=NodeLocalName] readonly attribute DOMString? localName;
79 const unsigned short DOCUMENT_POSITION_FOLLOWING = 0x04;
80 const unsigned short DOCUMENT_POSITION_CONTAINS = 0x08;
81 const unsigned short DOCUMENT_POSITION_CONTAINED_BY = 0x10;
82 const unsigned short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20;
83 86
84 unsigned short compareDocumentPosition(Node other); 87 // FIXME: isSameNode has been removed from the spec:
85 88 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=27424
86 // Introduced in DOM4 89 [MeasureAs=NodeIsSameNode] boolean isSameNode(Node? other);
87 boolean contains(Node other);
88
89 // IE extensions
90 [PerWorldBindings] readonly attribute Element parentElement;
91 }; 90 };
OLDNEW
« no previous file with comments | « core/dom/NamedNodeMap.idl ('k') | core/dom/NodeFilter.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698