Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(936)

Unified Diff: sdk/lib/svg/dart2js/svg_dart2js.dart

Issue 321043003: Native method name mismatch cleanups for Dartium 36 roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: PTAL Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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))

Powered by Google App Engine
This is Rietveld 408576698