| Index: lib/html/templates/html/impl/impl_SVGElement.darttemplate
|
| diff --git a/lib/html/templates/html/impl/impl_SVGElement.darttemplate b/lib/html/templates/html/impl/impl_SVGElement.darttemplate
|
| index ffb2b58ed92434908bbde23d109719adf4a5275b..1aabd6c364f9b8952b4a6da0a8212b17ae8fdaa7 100644
|
| --- a/lib/html/templates/html/impl/impl_SVGElement.darttemplate
|
| +++ b/lib/html/templates/html/impl/impl_SVGElement.darttemplate
|
| @@ -20,7 +20,7 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| return _cssClassSet;
|
| }
|
|
|
| - List<Element> get elements => new _FilteredElementList(this);
|
| + ElementList get elements => new FilteredElementList(this);
|
|
|
| void set elements(Collection<Element> value) {
|
| final elements = this.elements;
|
| @@ -47,7 +47,7 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| // Wrap the SVG string in <svg> so that SVGElements are created, rather than
|
| // HTMLElements.
|
| container.innerHTML = '<svg version="1.1">$svg</svg>';
|
| - this.elements = container.elements[0].elements;
|
| + this.elements = container.elements.first.elements;
|
| }
|
|
|
| $!MEMBERS
|
|
|