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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 11365270: Un-hiding Node.nodeType. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 56d48e347683d09c795718730a4827fd469916c7..8d50cb3896f5da3dea14295a6ca0f3a94b232e4e 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -13509,7 +13509,7 @@ class Node extends EventTarget native "*Node" {
Node get nextNode => JS("Node", "#.nextSibling", this);
/** @domName Node.nodeType */
- int get $dom_nodeType => JS("int", "#.nodeType", this);
+ final int nodeType;
/** @domName Node.ownerDocument */
Document get document => JS("Document", "#.ownerDocument", this);
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698