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

Unified Diff: tests/lib_strong/html/rtc_test.dart

Issue 2592813003: Fix bug in Blob creation from workers. (Closed)
Patch Set: Remove version checks for Rtc now that Chrome 55 is stable. Created 4 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 | « pkg/dev_compiler/test/browser/language_tests.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib_strong/html/rtc_test.dart
diff --git a/tests/lib_strong/html/rtc_test.dart b/tests/lib_strong/html/rtc_test.dart
index 8582b3a4cea28fc0c955af6cfaa51ff775f51518..a5dd7bf24e166dcdfcf740f82a4d0712ff2b73c1 100644
--- a/tests/lib_strong/html/rtc_test.dart
+++ b/tests/lib_strong/html/rtc_test.dart
@@ -24,10 +24,7 @@ main() {
var pc = new RtcPeerConnection(
{'iceServers': [ {'url':'stun:216.93.246.18:3478'}]});
expect(pc is RtcPeerConnection, isTrue);
- // TODO(efortuna): Uncomment this test when RTCPeerConnection correctly
- // implements EventListener in Firefox (works correctly in nightly, so
- // it's coming!).
- //pc.onIceCandidate.listen((candidate) {});
+ pc.onIceCandidate.listen((candidate) {});
});
test('ice candidate', () {
« no previous file with comments | « pkg/dev_compiler/test/browser/language_tests.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698