| Index: tools/dom/templates/html/impl/impl_Element.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Element.darttemplate b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| index 752c93f479f557f2798e39357ca98b4c2736471e..4d5c1e43cfe6375fa6b0b74d03d4c2280ad5921b 100644
|
| --- a/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| @@ -567,27 +567,6 @@ $(ANNOTATIONS)abstract class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| }
|
|
|
| /**
|
| - * 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;
|
| - }
|
| -
|
| - /**
|
| - * Deprecated, use [children] instead.
|
| - */
|
| - @deprecated
|
| - List<Element> get elements => this.children;
|
| -
|
| - /**
|
| * List of the direct children of this element.
|
| *
|
| * This collection can be used to add and remove elements from the document.
|
|
|