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

Unified Diff: sdk/lib/svg/dartium/svg_dartium.dart

Issue 11473013: Adding deprecated flag to deprecated members. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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/dartium/svg_dartium.dart
diff --git a/sdk/lib/svg/dartium/svg_dartium.dart b/sdk/lib/svg/dartium/svg_dartium.dart
index 7ee4b89b55935ce9c18ecd21028b0d3ef9fd2f88..8da06e2ae7ebbba7e5727ccbf477645a1bcaa1b6 100644
--- a/sdk/lib/svg/dartium/svg_dartium.dart
+++ b/sdk/lib/svg/dartium/svg_dartium.dart
@@ -35,11 +35,11 @@ class _SvgElementFactoryProvider {
}
parentTag.innerHtml = svg;
- if (parentTag.elements.length == 1) return parentTag.elements.removeLast();
+ if (parentTag.children.length == 1) return parentTag.children.removeLast();
throw new ArgumentError(
- 'SVG had ${parentTag.elements.length} '
- 'top-level elements but 1 expected');
+ 'SVG had ${parentTag.children.length} '
+ 'top-level children but 1 expected');
}
}
« sdk/lib/html/html_common/html_common.dart ('K') | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698