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

Unified Diff: sdk/lib/html/dartium/html_dartium.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:
Download patch
Index: sdk/lib/html/dartium/html_dartium.dart
===================================================================
--- sdk/lib/html/dartium/html_dartium.dart (revision 14920)
+++ sdk/lib/html/dartium/html_dartium.dart (working copy)
@@ -8485,7 +8485,7 @@
this.insertAdjacentText('beforeend', text);
}
- void addHTML(String text) {
+ void addHtml(String text) {
this.insertAdjacentHTML('beforeend', text);
}
@@ -9340,7 +9340,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 | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | sdk/lib/html/templates/html/impl/impl_DocumentFragment.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698