| Index: lib/html/templates/html/interface/interface_SVGElement.darttemplate
|
| diff --git a/lib/html/templates/html/interface/interface_SVGElement.darttemplate b/lib/html/templates/html/interface/interface_SVGElement.darttemplate
|
| index a5487d8426234c1999f92ba80ac9367edb677708..785ad11d1d419f14d15366e152fc125ab9b795a5 100644
|
| --- a/lib/html/templates/html/interface/interface_SVGElement.darttemplate
|
| +++ b/lib/html/templates/html/interface/interface_SVGElement.darttemplate
|
| @@ -3,10 +3,12 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| $!COMMENT
|
| -interface SVGElement extends Element default _$(ID)FactoryProvider {
|
| +abstract class SVGElement implements Element {
|
|
|
| - SVGElement.tag(String tag);
|
| - SVGElement.svg(String svg);
|
| + factory SVGElement.tag(String tag) =>
|
| + _$(ID)FactoryProvider.create$(ID)_tag(tag);
|
| + factory SVGElement.svg(String svg) =>
|
| + _$(ID)FactoryProvider.create$(ID)_svg(svg);
|
|
|
| SVGElement clone(bool deep);
|
|
|
|
|