| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index d369d91ccbeeafe423696823281aa22b1fe7530d..415f5988c7a3f913c9d1f494fd9f58afe14106ea 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -12498,6 +12498,18 @@ abstract class Element implements Node, NodeSelector {
|
|
|
| Element get parent;
|
|
|
| + /**
|
| + * Experimental support for [web components][wc]. This field stores a
|
| + * reference to the component implementation. It was inspired by Mozilla's
|
| + * [x-tags][] project. Please note: in the future it may be possible to
|
| + * `extend Element` from your class, in which case this field will be
|
| + * deprecated and will simply return this [Element] object.
|
| + *
|
| + * [wc]: http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html
|
| + * [x-tags]: http://x-tags.org/
|
| + */
|
| + var xtag;
|
| +
|
|
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
|
|