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

Unified Diff: tests/html/css_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/css_rule_list_test.dart ('k') | tests/html/cssstyledeclaration_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/css_test.dart
diff --git a/tests/html/css_test.dart b/tests/html/css_test.dart
index eeb52cf479e41ecd0bcf2fb9ac609457cb016215..d827ab38b929ecc277ba6bfcc687ef5ccc8bdc08 100644
--- a/tests/html/css_test.dart
+++ b/tests/html/css_test.dart
@@ -1,16 +1,16 @@
-library CSSTest;
+library CssTest;
import '../../pkg/unittest/lib/unittest.dart';
import '../../pkg/unittest/lib/html_config.dart';
import 'dart:html';
main() {
useHtmlConfiguration();
- test('CSSMatrix', () {
- CSSMatrix matrix1 = new CSSMatrix();
+ test('CssMatrix', () {
+ CssMatrix matrix1 = new CssMatrix();
expect(matrix1.m11.round(), equals(1));
expect(matrix1.m12.round(), isZero);
- CSSMatrix matrix2 = new CSSMatrix('matrix(1, 0, 0, 1, -835, 0)');
+ CssMatrix matrix2 = new CssMatrix('matrix(1, 0, 0, 1, -835, 0)');
expect(matrix2.a.round(), equals(1));
expect(matrix2.e.round(), equals(-835));
});
« no previous file with comments | « tests/html/css_rule_list_test.dart ('k') | tests/html/cssstyledeclaration_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698