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; |
/** |