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

Unified Diff: dart/site/try/src/decoration.dart

Issue 345553008: Fix issues that broke editing on browsers without Shadow DOM support. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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: dart/site/try/src/decoration.dart
diff --git a/dart/site/try/src/decoration.dart b/dart/site/try/src/decoration.dart
index 663aeea44ea909bb155541f89399a3c865e76097..97efd2a7220a7a84041a93f3bda23e00b76b75d3 100644
--- a/dart/site/try/src/decoration.dart
+++ b/dart/site/try/src/decoration.dart
@@ -68,8 +68,8 @@ class DiagnosticDecoration extends Decoration {
return element..append(
new AnchorElement()
..classes.add('diagnostic')
- ..nodes.addAll(nodes)
- ..append(tip));
+ ..append(tip)
ahe 2014/06/27 11:23:27 Assume the user have written "foo" and we want to
Johnni Winther 2014/07/02 08:40:53 Put this explanation as comment in the code.
ahe 2014/07/04 13:52:00 Done.
+ ..nodes.addAll(nodes));
}
}

Powered by Google App Engine
This is Rietveld 408576698