| Index: sdk/lib/svg/dartium/svg_dartium.dart
|
| diff --git a/sdk/lib/svg/dartium/svg_dartium.dart b/sdk/lib/svg/dartium/svg_dartium.dart
|
| index 1095161aefbd36b6822d5fee3d9939ebb0335ea6..8859092bd2f58835076f32f52949cbf573715243 100644
|
| --- a/sdk/lib/svg/dartium/svg_dartium.dart
|
| +++ b/sdk/lib/svg/dartium/svg_dartium.dart
|
| @@ -5306,7 +5306,7 @@ class SvgDocument extends Document {
|
|
|
| @DomName('SVGDocument.createEvent')
|
| @DocsEditable()
|
| - Event $dom_createEvent(String eventType) native "SVGDocument_createEvent_Callback";
|
| + Event _createEvent(String eventType) native "SVGDocument_createEvent_Callback";
|
|
|
| }
|
| // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| @@ -5403,8 +5403,8 @@ class SvgElement extends Element {
|
| throw new UnsupportedError("Cannot invoke insertAdjacentElement on SVG.");
|
| }
|
|
|
| - HtmlCollection get $dom_children {
|
| - throw new UnsupportedError("Cannot get dom_children on SVG.");
|
| + HtmlCollection get _children {
|
| + throw new UnsupportedError("Cannot get _children on SVG.");
|
| }
|
|
|
| bool get isContentEditable => false;
|
| @@ -5427,7 +5427,7 @@ class SvgElement extends Element {
|
| @DomName('SVGElement.className')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - AnimatedString get $dom_svgClassName native "SVGElement_className_Getter";
|
| + AnimatedString get _svgClassName native "SVGElement_className_Getter";
|
|
|
| @DomName('SVGElement.ownerSVGElement')
|
| @DocsEditable()
|
|
|