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

Unified Diff: LayoutTests/fast/mediastream/MediaStreamTrack-getSourceInfos.html

Issue 16778002: MediaStream API: Changing the device enumeration to be async (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review comment fixed Created 7 years, 6 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 | LayoutTests/fast/mediastream/MediaStreamTrack-getSourceInfos-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/mediastream/MediaStreamTrack-getSourceInfos.html
diff --git a/LayoutTests/fast/mediastream/MediaStreamTrack-getSourceInfos.html b/LayoutTests/fast/mediastream/MediaStreamTrack-getSourceInfos.html
deleted file mode 100644
index a4f7ad1229df0aa98080178acfc7abadf32534eb..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/mediastream/MediaStreamTrack-getSourceInfos.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
-<script src="../js/resources/js-test-pre.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-<script>
-description("Tests MediaStreamTrack::getSourceInfos.");
-
-var sources = null;
-var previousId;
-
-function error() {
- testFailed('Stream generation failed.');
- finishJSTest();
-}
-
-function getUserMedia(constraints, callback) {
- try {
- navigator.webkitGetUserMedia(constraints, callback, error);
- } catch (e) {
- testFailed('webkitGetUserMedia threw exception :' + e);
- finishJSTest();
- }
-}
-
-function gotStream(s) {
- shouldNotThrow('sources = MediaStreamTrack.getSourceInfos();');
- shouldBeTrue('sources.length > 0');
- shouldBeTrue('sources[0].id === previousId');
- shouldBeTrue('sources[0].label.length > 0');
- finishJSTest();
-}
-
-shouldNotThrow('sources = MediaStreamTrack.getSourceInfos();');
-shouldBeTrue('sources.length > 0');
-previousId = sources[0].id;
-
-getUserMedia({audio:true, video:true}, gotStream);
-
-window.jsTestIsAsync = true;
-window.successfullyParsed = true;
-</script>
-<script src="../js/resources/js-test-post.js"></script>
-</body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/fast/mediastream/MediaStreamTrack-getSourceInfos-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698