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

Unified Diff: tests/html/svg_3_test.dart

Issue 10952008: Take two of making FooList List<Foo>. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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
« no previous file with comments | « tests/html/html.status ('k') | tests/html/typing_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/svg_3_test.dart
===================================================================
--- tests/html/svg_3_test.dart (revision 12507)
+++ tests/html/svg_3_test.dart (working copy)
@@ -28,11 +28,11 @@
checkSVGTests(e) {
// Just check that the operations seem to exist.
var rx = e.requiredExtensions;
- Expect.isTrue(rx is SVGStringList);
+ Expect.isTrue(rx is List<String>);
var rf = e.requiredFeatures;
- Expect.isTrue(rf is SVGStringList);
+ Expect.isTrue(rf is List<String>);
var sl = e.systemLanguage;
- Expect.isTrue(sl is SVGStringList);
+ Expect.isTrue(sl is List<String>);
bool hasDoDo = e.hasExtension("DoDo");
Expect.isFalse(hasDoDo);
« no previous file with comments | « tests/html/html.status ('k') | tests/html/typing_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698