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

Unified Diff: content/test/data/media/video_audio_element_capture_test.html

Issue 2444153002: MediaRecorder: bugfix start() means buffer-forever (Closed)
Patch Set: s/start(1)/start(0)/ Created 4 years, 1 month 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
Index: content/test/data/media/video_audio_element_capture_test.html
diff --git a/content/test/data/media/video_audio_element_capture_test.html b/content/test/data/media/video_audio_element_capture_test.html
index ac21a8d25e51c1c91a594a86e12076ef911ab91d..7046a9962c38a8405a80b002e8556a0c88929caa 100644
--- a/content/test/data/media/video_audio_element_capture_test.html
+++ b/content/test/data/media/video_audio_element_capture_test.html
@@ -13,7 +13,7 @@
'use strict';
-const NUMBER_OF_EVENTS_TO_RECORD = 100;
+const NUMBER_OF_EVENTS_TO_RECORD = 25;
function testCaptureFromMediaElement(filename,
has_video,
@@ -43,7 +43,7 @@ function testCaptureFromMediaElement(filename,
reportTestSuccess();
};
- recorder.start();
+ recorder.start(0);
element.play();
};
}

Powered by Google App Engine
This is Rietveld 408576698