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

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

Issue 1188083005: bindings: Remove unused [ExposeJSAccessors]. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/Element.idl ('k') | no next file » | 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,
(...skipping 23 matching lines...) Expand all
34 const unsigned short ENTITY_NODE = 6; // historical 34 const unsigned short ENTITY_NODE = 6; // historical
35 const unsigned short PROCESSING_INSTRUCTION_NODE = 7; 35 const unsigned short PROCESSING_INSTRUCTION_NODE = 7;
36 const unsigned short COMMENT_NODE = 8; 36 const unsigned short COMMENT_NODE = 8;
37 const unsigned short DOCUMENT_NODE = 9; 37 const unsigned short DOCUMENT_NODE = 9;
38 const unsigned short DOCUMENT_TYPE_NODE = 10; 38 const unsigned short DOCUMENT_TYPE_NODE = 10;
39 const unsigned short DOCUMENT_FRAGMENT_NODE = 11; 39 const unsigned short DOCUMENT_FRAGMENT_NODE = 11;
40 const unsigned short NOTATION_NODE = 12; // historical 40 const unsigned short NOTATION_NODE = 12; // historical
41 readonly attribute unsigned short nodeType; 41 readonly attribute unsigned short nodeType;
42 readonly attribute DOMString nodeName; 42 readonly attribute DOMString nodeName;
43 43
44 [ExposeJSAccessors] readonly attribute DOMString? baseURI; 44 readonly attribute DOMString? baseURI;
45 45
46 [PerWorldBindings, ExposeJSAccessors] readonly attribute Document? ownerDocu ment; 46 [PerWorldBindings] readonly attribute Document? ownerDocument;
47 [PerWorldBindings, ExposeJSAccessors] readonly attribute Node? parentNode; 47 [PerWorldBindings] readonly attribute Node? parentNode;
48 [PerWorldBindings] readonly attribute Element? parentElement; 48 [PerWorldBindings] readonly attribute Element? parentElement;
49 [ImplementedAs=hasChildren] boolean hasChildNodes(); 49 [ImplementedAs=hasChildren] boolean hasChildNodes();
50 [SameObject, PerWorldBindings, ExposeJSAccessors] readonly attribute NodeLis t childNodes; 50 [SameObject, PerWorldBindings] readonly attribute NodeList childNodes;
51 [PerWorldBindings, ExposeJSAccessors] readonly attribute Node? firstChild; 51 [PerWorldBindings] readonly attribute Node? firstChild;
52 [PerWorldBindings, ExposeJSAccessors] readonly attribute Node? lastChild; 52 [PerWorldBindings] readonly attribute Node? lastChild;
53 [PerWorldBindings, ExposeJSAccessors] readonly attribute Node? previousSibli ng; 53 [PerWorldBindings] readonly attribute Node? previousSibling;
54 [PerWorldBindings, ExposeJSAccessors] readonly attribute Node? nextSibling; 54 [PerWorldBindings] readonly attribute Node? nextSibling;
55 55
56 [CustomElementCallbacks] attribute DOMString? nodeValue; 56 [CustomElementCallbacks] attribute DOMString? nodeValue;
57 // FIXME: textContent should not have [TreatUndefinedAs=NullString]. 57 // FIXME: textContent should not have [TreatUndefinedAs=NullString].
58 [TreatUndefinedAs=NullString, CustomElementCallbacks] attribute DOMString? t extContent; 58 [TreatUndefinedAs=NullString, CustomElementCallbacks] attribute DOMString? t extContent;
59 [CustomElementCallbacks] void normalize(); 59 [CustomElementCallbacks] void normalize();
60 60
61 // FIXME: The deep argument should have a default value false. 61 // FIXME: The deep argument should have a default value false.
62 [NewObject, CustomElementCallbacks] Node cloneNode(optional boolean deep); 62 [NewObject, CustomElementCallbacks] Node cloneNode(optional boolean deep);
63 boolean isEqualNode(Node? node); 63 boolean isEqualNode(Node? node);
64 64
(...skipping 16 matching lines...) Expand all
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. 83 // FIXME: namespaceURI and localName have been moved to Element and Attr.
84 [MeasureAs=NodeNamespaceURI] readonly attribute DOMString? namespaceURI; 84 [MeasureAs=NodeNamespaceURI] readonly attribute DOMString? namespaceURI;
85 [MeasureAs=NodeLocalName] readonly attribute DOMString? localName; 85 [MeasureAs=NodeLocalName] readonly attribute DOMString? localName;
86 86
87 // FIXME: isSameNode has been removed from the spec: 87 // FIXME: isSameNode has been removed from the spec:
88 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=27424 88 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=27424
89 [MeasureAs=NodeIsSameNode] boolean isSameNode(Node? other); 89 [MeasureAs=NodeIsSameNode] boolean isSameNode(Node? other);
90 }; 90 };
OLDNEW
« no previous file with comments | « Source/core/dom/Element.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698