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

Unified Diff: tests/html/svg_3_test.dart

Issue 11398002: Splitting SVG types out of dart:html. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minifying. Created 8 years, 1 month 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/svg_2_test.dart ('k') | tests/html/svgelement2_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
diff --git a/tests/html/svg_3_test.dart b/tests/html/svg_3_test.dart
index 520b138468be021d1ee0219d9057167063d8b289..b5762d2f26505a29b4106e3f56ad88b4b5f993ee 100644
--- a/tests/html/svg_3_test.dart
+++ b/tests/html/svg_3_test.dart
@@ -2,6 +2,7 @@ library SVG3Test;
import '../../pkg/unittest/lib/unittest.dart';
import '../../pkg/unittest/lib/html_config.dart';
import 'dart:html';
+import 'dart:svg';
// Test that SVG elements have the operations advertised through all the IDL
// interfaces. This is a 'duck typing' test, and does not explicitly use 'is'
@@ -12,9 +13,9 @@ main() {
var isString = predicate((x) => x is String, 'is a String');
var isStringList = predicate((x) => x is List<String>, 'is a List<String>');
var isSVGMatrix = predicate((x) => x is SVGMatrix, 'is a SVGMatrix');
- var isSVGAnimatedBoolean =
+ var isSVGAnimatedBoolean =
predicate((x) => x is SVGAnimatedBoolean, 'is an SVGAnimatedBoolean');
- var isSVGAnimatedString =
+ var isSVGAnimatedString =
predicate((x) => x is SVGAnimatedString, 'is an SVGAnimatedString');
var isSVGRect = predicate((x) => x is SVGRect, 'is a SVGRect');
var isSVGAnimatedTransformList =
« no previous file with comments | « tests/html/svg_2_test.dart ('k') | tests/html/svgelement2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698