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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 11473013: Adding deprecated flag to deprecated members. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index fbe86dd57b763eefe3c8166254603f7a3825c18a..e6f10f4d997ef3f3af882d36aab2ba20ef767b12 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -8788,11 +8788,14 @@ abstract class Element extends Node implements ElementTraversal {
/**
* Deprecated, use innerHtml instead.
*/
+ @deprecated
String get innerHTML => this.innerHtml;
+ @deprecated
void set innerHTML(String value) {
this.innerHtml = value;
}
+ @deprecated
void set elements(Collection<Element> value) {
this.children = value;
}
@@ -8800,6 +8803,7 @@ abstract class Element extends Node implements ElementTraversal {
/**
* Deprecated, use [children] instead.
*/
+ @deprecated
List<Element> get elements => this.children;
/**

Powered by Google App Engine
This is Rietveld 408576698