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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 13852015: unhide nodeType constants (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merged Created 7 years, 8 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:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index ba1653c02041ff0422b5892e69ee2e43a05b59f3..db0524d1e67bbe82d105bb0c7d892790a6cfb9bb 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -17251,6 +17251,30 @@ class Node extends EventTarget {
Node.internal() : super.internal();
+ static const int ATTRIBUTE_NODE = 2;
+
+ static const int CDATA_SECTION_NODE = 4;
+
+ static const int COMMENT_NODE = 8;
+
+ static const int DOCUMENT_FRAGMENT_NODE = 11;
+
+ static const int DOCUMENT_NODE = 9;
+
+ static const int DOCUMENT_TYPE_NODE = 10;
+
+ static const int ELEMENT_NODE = 1;
+
+ static const int ENTITY_NODE = 6;
+
+ static const int ENTITY_REFERENCE_NODE = 5;
+
+ static const int NOTATION_NODE = 12;
+
+ static const int PROCESSING_INSTRUCTION_NODE = 7;
+
+ static const int TEXT_NODE = 3;
+
@DomName('Node.childNodes')
@DocsEditable
List<Node> get $dom_childNodes native "Node_childNodes_Getter";
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698