| 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 86258a17c732c811b6ac847d7573197ca9c33a43..d9f4473fc8fa3f083aa76ebcdc6c4d6d512b15f9 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -7839,7 +7839,9 @@ abstract class Element extends Node implements ElementTraversal {
|
| * [wc]: http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html
|
| * [x-tags]: http://x-tags.org/
|
| */
|
| - Element get xtag => _xtag != null ? _xtag : this;
|
| + // Note: return type is `dynamic` for convenience to suppress warnings when
|
| + // members of the component are used. The actual type is a subtype of Element.
|
| + get xtag => _xtag != null ? _xtag : this;
|
|
|
| void set xtag(Element value) {
|
| _xtag = value;
|
|
|