| Index: tools/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_SVGElement.darttemplate b/tools/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| index 886d783376fee336dd16049b44910c1ccdf9516c..fec3eb6a87d8615f8e9a705f41ef1cd3c442c979 100644
|
| --- a/tools/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_SVGElement.darttemplate
|
| @@ -65,14 +65,14 @@ $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS
|
| }
|
|
|
| String get outerHtml {
|
| - final container = new DivElement();
|
| + final container = new Element.tag("div");
|
| final SvgElement cloned = this.clone(true);
|
| container.children.add(cloned);
|
| return container.innerHtml;
|
| }
|
|
|
| String get innerHtml {
|
| - final container = new DivElement();
|
| + final container = new Element.tag("div");
|
| final SvgElement cloned = this.clone(true);
|
| container.children.addAll(cloned.children);
|
| return container.innerHtml;
|
|
|