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

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

Issue 11409003: Rename addHTML to addHtml. (Closed) Base URL: http://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
===================================================================
--- sdk/lib/html/dart2js/html_dart2js.dart (revision 14920)
+++ sdk/lib/html/dart2js/html_dart2js.dart (working copy)
@@ -6476,7 +6476,7 @@
this.insertAdjacentText('beforeend', text);
}
- void addHTML(String text) {
+ void addHtml(String text) {
this.insertAdjacentHTML('beforeend', text);
}
@@ -7303,7 +7303,7 @@
* Parses the specified text as HTML and adds the resulting node after the
* last child of this.
*/
- void addHTML(String text) {
+ void addHtml(String text) {
this.insertAdjacentHTML('beforeend', text);
}
« 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