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

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

Issue 10883049: Regen dart:html and fix status (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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:
Download patch
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dart2js/html_dart2js.dart
diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
index 1557cb4bf081dd140ac004978021507a6ee0ab6e..e8c588da7ef85aeea7cade4e5ff25d874ab9feb5 100644
--- a/lib/html/dart2js/html_dart2js.dart
+++ b/lib/html/dart2js/html_dart2js.dart
@@ -37686,7 +37686,7 @@ int _localNextElementId = 0;
const _DART_ID = 'data-dart_id';
-var _elementId(Element e) {
+_elementId(Element e) {
if (e.attributes.containsKey(_DART_ID)) return e.attributes[_DART_ID];
var id = '$_isolateId-${_localNextElementId++}';
e.attributes[_DART_ID] = id;
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698