| Index: lib/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| diff --git a/lib/dom/templates/html/impl/impl_SVGElement.darttemplate b/lib/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| index f0a254732be0f1e2ceb46dc53880c19b9b761730..1aabd6c364f9b8952b4a6da0a8212b17ae8fdaa7 100644
|
| --- a/lib/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| +++ b/lib/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| @@ -13,14 +13,14 @@ class _AttributeClassSet extends _CssClassSet {
|
| }
|
|
|
| class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| - CSSClassSet get classes() {
|
| + CSSClassSet get classes {
|
| if (_cssClassSet === null) {
|
| _cssClassSet = new _AttributeClassSet(_ptr);
|
| }
|
| return _cssClassSet;
|
| }
|
|
|
| - ElementList get elements() => new FilteredElementList(this);
|
| + ElementList get elements => new FilteredElementList(this);
|
|
|
| void set elements(Collection<Element> value) {
|
| final elements = this.elements;
|
| @@ -28,14 +28,14 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| elements.addAll(value);
|
| }
|
|
|
| - String get outerHTML() {
|
| + String get outerHTML {
|
| final container = new Element.tag("div");
|
| final SVGElement cloned = this.clone(true);
|
| container.elements.add(cloned);
|
| return container.innerHTML;
|
| }
|
|
|
| - String get innerHTML() {
|
| + String get innerHTML {
|
| final container = new Element.tag("div");
|
| final SVGElement cloned = this.clone(true);
|
| container.elements.addAll(cloned.elements);
|
|
|