| Index: pkg/custom_element/lib/custom_element.dart
|
| diff --git a/pkg/custom_element/lib/custom_element.dart b/pkg/custom_element/lib/custom_element.dart
|
| index 202a0eedfc425265d60703dd9be306e6f6f3404a..2a13fda947514dc3b31f94e4d2ab17c72c6dcc9e 100644
|
| --- a/pkg/custom_element/lib/custom_element.dart
|
| +++ b/pkg/custom_element/lib/custom_element.dart
|
| @@ -197,6 +197,29 @@ class CustomElement implements Element {
|
| BindingDelegate get bindingDelegate => host.bindingDelegate;
|
| set bindingDelegate(BindingDelegate value) { host.bindingDelegate = value; }
|
|
|
| + // TODO(efortuna): Update these when we decide what to do with these
|
| + // properties.
|
| + @deprecated
|
| + String getAttribute(String name) =>
|
| + host.getAttribute(name);
|
| +
|
| + @deprecated
|
| + String getAttributeNS(String namespaceUri, String localName) =>
|
| + host.getAttributeNS(namespaceUri, localName);
|
| +
|
| + @deprecated
|
| + String setAttributeNS(
|
| + String namespaceUri, String localName, String value) {
|
| + host.setAttributeNS(namespaceUri, localName, value);
|
| + }
|
| +
|
| + @deprecated
|
| + void setAttribute(String name, String value) =>
|
| + host.setAttribute(name, value);
|
| +
|
| + @deprecated
|
| + List<Node> get childNodes => host.childNodes;
|
| +
|
| // TODO(jmesserly): this forwarding is temporary until Dart supports
|
| // subclassing Elements.
|
| // TODO(jmesserly): we were missing the setter for title, are other things
|
|
|