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

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

Issue 15796004: [MediaStream API] Adding MediaStreamTrack::getSourceInfos (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed review comments and merge 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/RTCPeerConnection-onnegotiationneeded.html b/LayoutTests/fast/mediastream/MediaStreamTrack-getSourceInfos.html
similarity index 47%
copy from LayoutTests/fast/mediastream/RTCPeerConnection-onnegotiationneeded.html
copy to LayoutTests/fast/mediastream/MediaStreamTrack-getSourceInfos.html
index d8e8df10d8dea80b4bba3bbc69cf956bb633a3f8..a4f7ad1229df0aa98080178acfc7abadf32534eb 100644
--- a/LayoutTests/fast/mediastream/RTCPeerConnection-onnegotiationneeded.html
+++ b/LayoutTests/fast/mediastream/MediaStreamTrack-getSourceInfos.html
@@ -1,44 +1,43 @@
<!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 RTCPeerConnection onnegotiationneeded.");
+description("Tests MediaStreamTrack::getSourceInfos.");
-var stream = null;
-var pc = null;
+var sources = null;
+var previousId;
function error() {
testFailed('Stream generation failed.');
finishJSTest();
}
-function getUserMedia(dictionary, callback) {
+function getUserMedia(constraints, callback) {
try {
- navigator.webkitGetUserMedia(dictionary, callback, error);
+ navigator.webkitGetUserMedia(constraints, callback, error);
} catch (e) {
testFailed('webkitGetUserMedia threw exception :' + e);
finishJSTest();
}
}
-function onNegotiationNeeded(event) {
- testPassed('onNegotiationNeeded was called.');
-
+function gotStream(s) {
+ shouldNotThrow('sources = MediaStreamTrack.getSourceInfos();');
+ shouldBeTrue('sources.length > 0');
+ shouldBeTrue('sources[0].id === previousId');
+ shouldBeTrue('sources[0].label.length > 0');
finishJSTest();
}
-function gotStream(s) {
- testPassed('Got a stream.');
- stream = s;
-
- pc = new webkitRTCPeerConnection(null, null);
- pc.onnegotiationneeded = onNegotiationNeeded;
-
- pc.addStream(stream);
-}
+shouldNotThrow('sources = MediaStreamTrack.getSourceInfos();');
+shouldBeTrue('sources.length > 0');
+previousId = sources[0].id;
getUserMedia({audio:true, video:true}, gotStream);
« 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