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

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

Issue 2249083002: Reinstate CDATASection (it's back in the spec) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
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 21 // https://dom.spec.whatwg.org/#interface-node
22 22
23 [ 23 [
24 DependentLifetime, 24 DependentLifetime,
25 ] interface Node : EventTarget { 25 ] interface Node : EventTarget {
26 const unsigned short ELEMENT_NODE = 1; 26 const unsigned short ELEMENT_NODE = 1;
27 // FIXME: Attr should not inherit from Node. crbug.com/305105 27 // FIXME: Attr should not inherit from Node. crbug.com/305105
28 const unsigned short ATTRIBUTE_NODE = 2; 28 const unsigned short ATTRIBUTE_NODE = 2;
29 const unsigned short TEXT_NODE = 3; 29 const unsigned short TEXT_NODE = 3;
30 // FIXME: CDATASection has been removed from the spec. crbug.com/437205
31 const unsigned short CDATA_SECTION_NODE = 4; 30 const unsigned short CDATA_SECTION_NODE = 4;
32 const unsigned short ENTITY_REFERENCE_NODE = 5; // historical 31 const unsigned short ENTITY_REFERENCE_NODE = 5; // historical
33 const unsigned short ENTITY_NODE = 6; // historical 32 const unsigned short ENTITY_NODE = 6; // historical
34 const unsigned short PROCESSING_INSTRUCTION_NODE = 7; 33 const unsigned short PROCESSING_INSTRUCTION_NODE = 7;
35 const unsigned short COMMENT_NODE = 8; 34 const unsigned short COMMENT_NODE = 8;
36 const unsigned short DOCUMENT_NODE = 9; 35 const unsigned short DOCUMENT_NODE = 9;
37 const unsigned short DOCUMENT_TYPE_NODE = 10; 36 const unsigned short DOCUMENT_TYPE_NODE = 10;
38 const unsigned short DOCUMENT_FRAGMENT_NODE = 11; 37 const unsigned short DOCUMENT_FRAGMENT_NODE = 11;
39 const unsigned short NOTATION_NODE = 12; // historical 38 const unsigned short NOTATION_NODE = 12; // historical
40 [ImplementedAs=getNodeType] readonly attribute unsigned short nodeType; 39 [ImplementedAs=getNodeType] readonly attribute unsigned short nodeType;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 74
76 DOMString? lookupPrefix(DOMString? namespaceURI); 75 DOMString? lookupPrefix(DOMString? namespaceURI);
77 DOMString? lookupNamespaceURI(DOMString? prefix); 76 DOMString? lookupNamespaceURI(DOMString? prefix);
78 boolean isDefaultNamespace(DOMString? namespaceURI); 77 boolean isDefaultNamespace(DOMString? namespaceURI);
79 78
80 [CEReactions, CustomElementCallbacks, PerWorldBindings, RaisesException] Nod e insertBefore(Node node, Node? child); 79 [CEReactions, CustomElementCallbacks, PerWorldBindings, RaisesException] Nod e insertBefore(Node node, Node? child);
81 [CEReactions, CustomElementCallbacks, PerWorldBindings, RaisesException] Nod e appendChild(Node node); 80 [CEReactions, CustomElementCallbacks, PerWorldBindings, RaisesException] Nod e appendChild(Node node);
82 [CEReactions, CustomElementCallbacks, PerWorldBindings, RaisesException] Nod e replaceChild(Node node, Node child); 81 [CEReactions, CustomElementCallbacks, PerWorldBindings, RaisesException] Nod e replaceChild(Node node, Node child);
83 [CEReactions, CustomElementCallbacks, RaisesException] Node removeChild(Node child); 82 [CEReactions, CustomElementCallbacks, RaisesException] Node removeChild(Node child);
84 }; 83 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.idl ('k') | third_party/WebKit/Source/core/dom/NodeFilter.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698