| Index: sdk/lib/svg/dart2js/svg_dart2js.dart
|
| diff --git a/sdk/lib/svg/dart2js/svg_dart2js.dart b/sdk/lib/svg/dart2js/svg_dart2js.dart
|
| index 41d6ae121ba6cd5f633282d5b3396efb7f836581..0ef1e4a9c3db327724b62d818e8cead15503b457 100644
|
| --- a/sdk/lib/svg/dart2js/svg_dart2js.dart
|
| +++ b/sdk/lib/svg/dart2js/svg_dart2js.dart
|
| @@ -1120,12 +1120,6 @@ class ElementInstance extends EventTarget native "SVGElementInstance" {
|
| @DocsEditable()
|
| static const EventStreamProvider<Event> unloadEvent = const EventStreamProvider<Event>('unload');
|
|
|
| - @DomName('SVGElementInstance.childNodes')
|
| - @DocsEditable()
|
| - @Returns('_ElementInstanceList')
|
| - @Creates('_ElementInstanceList')
|
| - final List<ElementInstance> childNodes;
|
| -
|
| @DomName('SVGElementInstance.correspondingElement')
|
| @DocsEditable()
|
| final SvgElement correspondingElement;
|
| @@ -6012,14 +6006,6 @@ class SvgSvgElement extends GraphicsElement implements FitToViewBox, ZoomAndPan
|
| */
|
| SvgSvgElement.created() : super.created();
|
|
|
| - @DomName('SVGSVGElement.contentScriptType')
|
| - @DocsEditable()
|
| - String contentScriptType;
|
| -
|
| - @DomName('SVGSVGElement.contentStyleType')
|
| - @DocsEditable()
|
| - String contentStyleType;
|
| -
|
| @DomName('SVGSVGElement.currentScale')
|
| @DocsEditable()
|
| num currentScale;
|
| @@ -6955,10 +6941,6 @@ class _ElementInstanceList extends Interceptor with ListMixin<ElementInstance>,
|
| // To suppress missing implicit constructor warnings.
|
| factory _ElementInstanceList._() { throw new UnsupportedError("Not supported"); }
|
|
|
| - @DomName('SVGElementInstanceList.length')
|
| - @DocsEditable()
|
| - int get length => JS("int", "#.length", this);
|
| -
|
| ElementInstance operator[](int index) {
|
| if (JS("bool", "# >>> 0 !== # || # >= #", index,
|
| index, index, length))
|
|
|