| Index: client/html/frog/html_frog.dart
|
| diff --git a/client/html/frog/html_frog.dart b/client/html/frog/html_frog.dart
|
| index 71bb7e69a34ca9053df079263e56fddb28c4ecb6..dadb2f941710c22a1a93da61bd1323b829028d98 100644
|
| --- a/client/html/frog/html_frog.dart
|
| +++ b/client/html/frog/html_frog.dart
|
| @@ -31101,8 +31101,11 @@ class _DocumentFragmentFactoryProvider {
|
| }
|
|
|
| class _SVGElementFactoryProvider {
|
| - factory SVGElement.tag(String tag) =>
|
| - _document._createElementNS("http://www.w3.org/2000/svg", tag);
|
| + factory SVGElement.tag(String tag) {
|
| + final Element temp =
|
| + _document._createElementNS("http://www.w3.org/2000/svg", tag);
|
| + return temp;
|
| + }
|
|
|
| factory SVGElement.svg(String svg) {
|
| Element parentTag;
|
|
|