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

Unified Diff: tests/html/key_name_location_test.dart

Issue 26332002: Removed KeyName test since KeyName has gone away. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/key_name_location_test.dart
diff --git a/tests/html/key_name_location_test.dart b/tests/html/key_name_location_test.dart
deleted file mode 100644
index e276de18954e053266a8100b896a4c68ede12a33..0000000000000000000000000000000000000000
--- a/tests/html/key_name_location_test.dart
+++ /dev/null
@@ -1,31 +0,0 @@
-library KeyNameLocationTest;
-import '../../pkg/unittest/lib/unittest.dart';
-import '../../pkg/unittest/lib/html_config.dart';
-import 'dart:html';
-
-// Test for existence of some KeyName and KeyLocation constants.
-
-main() {
-
- useHtmlConfiguration();
-
- test('keyNames', () {
- expect(KeyName.DOWN_LEFT, "DownLeft");
- expect(KeyName.FN, "Fn");
- expect(KeyName.F1, "F1");
- expect(KeyName.META, "Meta");
- expect(KeyName.MEDIA_NEXT_TRACK, "MediaNextTrack");
- expect(KeyName.NUM_LOCK, "NumLock");
- expect(KeyName.PAGE_DOWN, "PageDown");
- expect(KeyName.DEAD_IOTA, "DeadIota");
- });
-
- test('keyLocations', () {
- expect(KeyLocation.STANDARD, 0);
- expect(KeyLocation.LEFT, 1);
- expect(KeyLocation.RIGHT, 2);
- expect(KeyLocation.NUMPAD, 3);
- expect(KeyLocation.MOBILE, 4);
- expect(KeyLocation.JOYSTICK, 5);
- });
-}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698