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

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

Issue 23797002: Hack to add accessors for WebIDL attributes. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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') | Source/core/dom/NodeList.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 [ 21 [
22 CustomToV8, 22 CustomToV8,
23 DependentLifetime 23 DependentLifetime
24 ] interface Node : EventTarget { 24 ] interface Node : EventTarget {
25 //attribute DOMString testAttrOnNode;
26 //[ExposeV8GetterAndSetter] attribute DOMString testAttrOnNodeWithGetterAndSet ter;
27
25 // NodeType 28 // NodeType
26 const unsigned short ELEMENT_NODE = 1; 29 const unsigned short ELEMENT_NODE = 1;
27 const unsigned short ATTRIBUTE_NODE = 2; 30 const unsigned short ATTRIBUTE_NODE = 2;
28 const unsigned short TEXT_NODE = 3; 31 const unsigned short TEXT_NODE = 3;
29 const unsigned short CDATA_SECTION_NODE = 4; 32 const unsigned short CDATA_SECTION_NODE = 4;
30 const unsigned short ENTITY_REFERENCE_NODE = 5; // EntityRefer ence nodes are impossible to create in WebKit. 33 const unsigned short ENTITY_REFERENCE_NODE = 5; // EntityRefer ence nodes are impossible to create in WebKit.
31 const unsigned short ENTITY_NODE = 6; 34 const unsigned short ENTITY_NODE = 6;
32 const unsigned short PROCESSING_INSTRUCTION_NODE = 7; 35 const unsigned short PROCESSING_INSTRUCTION_NODE = 7;
33 const unsigned short COMMENT_NODE = 8; 36 const unsigned short COMMENT_NODE = 8;
34 const unsigned short DOCUMENT_NODE = 9; 37 const unsigned short DOCUMENT_NODE = 9;
35 const unsigned short DOCUMENT_TYPE_NODE = 10; 38 const unsigned short DOCUMENT_TYPE_NODE = 10;
36 const unsigned short DOCUMENT_FRAGMENT_NODE = 11; 39 const unsigned short DOCUMENT_FRAGMENT_NODE = 11;
37 const unsigned short NOTATION_NODE = 12; 40 const unsigned short NOTATION_NODE = 12;
38 41
39 [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMStr ing nodeName; 42 [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMStr ing nodeName;
40 43
41 // FIXME: the spec says this can also raise on retrieval. 44 // FIXME: the spec says this can also raise on retrieval.
42 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, C ustomElementCallbacks] attribute DOMString nodeValue; 45 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, C ustomElementCallbacks] attribute DOMString nodeValue;
43 46
44 [PerWorldBindings] readonly attribute unsigned short nodeType; 47 [PerWorldBindings, ExposeV8GetterAndSetter] readonly attribute unsigned shor t nodeType;
45 [PerWorldBindings] readonly attribute Node parentNode; 48 [PerWorldBindings, ExposeV8GetterAndSetter] readonly attribute Node parentNode;
46 [PerWorldBindings] readonly attribute NodeList childNodes; 49 [PerWorldBindings, ExposeV8GetterAndSetter] readonly attribute NodeList childNodes;
47 [PerWorldBindings] readonly attribute Node firstChild; 50 [PerWorldBindings, ExposeV8GetterAndSetter] readonly attribute Node firstChild;
48 [PerWorldBindings] readonly attribute Node lastChild; 51 [PerWorldBindings, ExposeV8GetterAndSetter] readonly attribute Node lastChild;
49 [PerWorldBindings] readonly attribute Node previousSibling; 52 [PerWorldBindings, ExposeV8GetterAndSetter] readonly attribute Node previousSibling;
50 [PerWorldBindings] readonly attribute Node nextSibling; 53 [PerWorldBindings, ExposeV8GetterAndSetter] readonly attribute Node nextSibling;
51 [PerWorldBindings] readonly attribute Document ownerDocument; 54 [PerWorldBindings] readonly attribute Document ownerDocument;
52 55
53 [Custom, CustomElementCallbacks, PerWorldBindings, ActivityLogging=AccessFor IsolatedWorlds, RaisesException] Node insertBefore(Node newChild, Node refChild) ; 56 [Custom, CustomElementCallbacks, PerWorldBindings, ActivityLogging=AccessFor IsolatedWorlds, RaisesException] Node insertBefore(Node newChild, Node refChild) ;
54 [Custom, CustomElementCallbacks, PerWorldBindings, ActivityLogging=AccessFor IsolatedWorlds, RaisesException] Node replaceChild(Node newChild, Node oldChild) ; 57 [Custom, CustomElementCallbacks, PerWorldBindings, ActivityLogging=AccessFor IsolatedWorlds, RaisesException] Node replaceChild(Node newChild, Node oldChild) ;
55 [Custom, CustomElementCallbacks, PerWorldBindings, RaisesException] Node rem oveChild(Node oldChild); 58 [Custom, CustomElementCallbacks, PerWorldBindings, RaisesException] Node rem oveChild(Node oldChild);
56 [Custom, CustomElementCallbacks, PerWorldBindings, ActivityLogging=AccessFor IsolatedWorlds, RaisesException] Node appendChild(Node newChild); 59 [Custom, CustomElementCallbacks, PerWorldBindings, ActivityLogging=AccessFor IsolatedWorlds, RaisesException] Node appendChild(Node newChild);
57 60
58 boolean hasChildNodes(); 61 boolean hasChildNodes();
59 [CustomElementCallbacks, PerWorldBindings] 62 [CustomElementCallbacks, PerWorldBindings]
60 Node cloneNode(optional boolean deep); 63 Node cloneNode(optional boolean deep);
(...skipping 28 matching lines...) Expand all
89 const unsigned short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20; 92 const unsigned short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20;
90 93
91 unsigned short compareDocumentPosition([Default=Undefined] optional Node other); 94 unsigned short compareDocumentPosition([Default=Undefined] optional Node other);
92 95
93 // Introduced in DOM4 96 // Introduced in DOM4
94 [ImplementedAs=bindingsContains] boolean contains([Default=Undefined] option al Node other); 97 [ImplementedAs=bindingsContains] boolean contains([Default=Undefined] option al Node other);
95 98
96 // IE extensions 99 // IE extensions
97 [PerWorldBindings] readonly attribute Element parentElement; 100 [PerWorldBindings] readonly attribute Element parentElement;
98 }; 101 };
OLDNEW
« no previous file with comments | « Source/core/dom/Element.idl ('k') | Source/core/dom/NodeList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698