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

Unified Diff: tests/html/speechrecognition_test.dart

Issue 19247002: Fixing speech recognition test crash. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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/speechrecognition_test.dart
diff --git a/tests/html/speechrecognition_test.dart b/tests/html/speechrecognition_test.dart
index b44e6f554b371c28b987d481b84620e78897f8b0..cf3a4fa1035d9e7f541b8f0035b5f9265a7bc803 100644
--- a/tests/html/speechrecognition_test.dart
+++ b/tests/html/speechrecognition_test.dart
@@ -24,14 +24,15 @@ main() {
new SpeechRecognition();
}, expectation);
});
-
+/*
+ https://code.google.com/p/dart/issues/detail?id=11825
test('SpeechRecognitionEvent', () {
expect(() {
var e = new Event.eventType('SpeechRecognitionEvent', 'speech');
expect(e is SpeechRecognitionEvent, true);
}, expectation);
});
-
+*/
test('SpeechRecognitionError', () {
expect(() {
var e = new Event.eventType('SpeechRecognitionError', 'speech');
« 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