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

Unified Diff: tests/html/svgelement2_test.dart

Issue 12082122: Add supported checks to the SVG library, and library cleanup. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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: tests/html/svgelement2_test.dart
diff --git a/tests/html/svgelement2_test.dart b/tests/html/svgelement2_test.dart
index 468b61a4016f857e97e3428c6fc66fd87b0146f9..15ded5ce5eddac386625a8df11cdb37e491da580 100644
--- a/tests/html/svgelement2_test.dart
+++ b/tests/html/svgelement2_test.dart
@@ -4,7 +4,7 @@
library SVGElement2Test;
import '../../pkg/unittest/lib/unittest.dart';
-import '../../pkg/unittest/lib/html_config.dart';
+import '../../pkg/unittest/lib/html_individual_config.dart';
import 'svgelement_test.dart' as originalTest;
class A {
@@ -13,9 +13,13 @@ class A {
}
main() {
- // The svgelement_test requires the field "_this" to map to "_this". In this
- // test-case we use another library's '_this' first (see issue 3039 and
- // _ChildNodeListLazy.first).
- expect(new A(499)._this, 499);
- originalTest.main();
+ useHtmlIndividualConfiguration();
+
+ group('supported', () {
blois 2013/02/01 18:24:19 This isn't really a supported test- can it be slim
+ // The svgelement_test requires the field "_this" to map to "_this". In this
+ // test-case we use another library's '_this' first (see issue 3039 and
+ // _ChildNodeListLazy.first).
+ expect(new A(499)._this, 499);
+ originalTest.main();
+ });
}

Powered by Google App Engine
This is Rietveld 408576698