| Index: Source/core/dom/Node.h
|
| diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
|
| index f941954bd47603c076e288624dc76d478e12a2f1..5474d71b5730699f6ab10cf8e4c38393f45440c5 100644
|
| --- a/Source/core/dom/Node.h
|
| +++ b/Source/core/dom/Node.h
|
| @@ -135,7 +135,6 @@ public:
|
| ELEMENT_NODE = 1,
|
| ATTRIBUTE_NODE = 2,
|
| TEXT_NODE = 3,
|
| - CDATA_SECTION_NODE = 4,
|
| PROCESSING_INSTRUCTION_NODE = 7,
|
| COMMENT_NODE = 8,
|
| DOCUMENT_NODE = 9,
|
| @@ -148,6 +147,7 @@ public:
|
| // generation not complain about ENTITY_REFERENCE_NODE being missing from the implementation
|
| // while not requiring all switch(NodeType) blocks to include this deprecated constant.
|
| enum DeprecatedNodeType {
|
| + CDATA_SECTION_NODE = 4,
|
| ENTITY_REFERENCE_NODE = 5,
|
| ENTITY_NODE = 6,
|
| NOTATION_NODE = 12,
|
|
|