| Index: sdk/lib/html/templates/html/impl/impl_SvgElement.darttemplate
|
| diff --git a/sdk/lib/html/templates/html/impl/impl_SvgElement.darttemplate b/sdk/lib/html/templates/html/impl/impl_SvgElement.darttemplate
|
| index 1c15a0fa64f51ae266b292705510728274cba759..aa0ad6e78dd4b5be0e4c9a62d00298f43e557f1b 100644
|
| --- a/sdk/lib/html/templates/html/impl/impl_SvgElement.darttemplate
|
| +++ b/sdk/lib/html/templates/html/impl/impl_SvgElement.darttemplate
|
| @@ -61,25 +61,25 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| children.addAll(value);
|
| }
|
|
|
| - String get outerHTML {
|
| + String get outerHtml {
|
| final container = new Element.tag("div");
|
| final SvgElement cloned = this.clone(true);
|
| container.children.add(cloned);
|
| - return container.innerHTML;
|
| + return container.innerHtml;
|
| }
|
|
|
| - String get innerHTML {
|
| + String get innerHtml {
|
| final container = new Element.tag("div");
|
| final SvgElement cloned = this.clone(true);
|
| container.children.addAll(cloned.children);
|
| - return container.innerHTML;
|
| + return container.innerHtml;
|
| }
|
|
|
| - void set innerHTML(String svg) {
|
| + void set innerHtml(String svg) {
|
| final container = new Element.tag("div");
|
| // Wrap the SVG string in <svg> so that SvgElements are created, rather than
|
| // HTMLElements.
|
| - container.innerHTML = '<svg version="1.1">$svg</svg>';
|
| + container.innerHtml = '<svg version="1.1">$svg</svg>';
|
| this.children = container.children[0].children;
|
| }
|
|
|
|
|