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

Unified Diff: tests/html/svg_3_test.dart

Issue 11419300: Dartifying dart:html type names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Unminifying & fixing Stephen's feedback. 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
« no previous file with comments | « tests/html/indexeddb_4_test.dart ('k') | tests/html/websql_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 b076ed650ac89497bf8cfb5d84ebeb727d722b90..06271da6ee95c87f22de80f4a0cdd5cf5fd81bf1 100644
--- a/tests/html/svg_3_test.dart
+++ b/tests/html/svg_3_test.dart
@@ -21,9 +21,9 @@ main() {
var isSvgAnimatedTransformList =
predicate((x) => x is svg.AnimatedTransformList,
'is an svg.AnimatedTransformList');
- var isCSSStyleDeclaration =
- predicate((x) => x is CSSStyleDeclaration, 'is a CSSStyleDeclaration');
- var isCSSValue = predicate((x) => x is CSSValue, 'is a CSSValue');
+ var isCssStyleDeclaration =
+ predicate((x) => x is CssStyleDeclaration, 'is a CssStyleDeclaration');
+ var isCssValue = predicate((x) => x is CssValue, 'is a CssValue');
insertTestDiv() {
var element = new Element.tag('div');
@@ -88,10 +88,10 @@ main() {
expect(className, isSvgAnimatedString);
var s = e.style;
- expect(s, isCSSStyleDeclaration);
+ expect(s, isCssStyleDeclaration);
var attributeA = e.getPresentationAttribute('A');
- expect(attributeA, anyOf(isNull, isCSSValue));
+ expect(attributeA, anyOf(isNull, isCssValue));
}
/**
« no previous file with comments | « tests/html/indexeddb_4_test.dart ('k') | tests/html/websql_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698