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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.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:
View side-by-side diff with in-line comments
Download patch
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index 86bd969e47f8df453ba43b02632a476ea0dc0727..e6b16317c660d0626e2b28d770eb0fca4f857461 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -16137,6 +16137,30 @@ class Node extends EventTarget native "*Node" {
(nodeValue == null ? super.toString() : nodeValue) : localName;
+ 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;
+
@JSName('childNodes')
@DomName('Node.childNodes')
@DocsEditable
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | sdk/lib/web_audio/dartium/web_audio_dartium.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698