Index: LayoutTests/imported/web-platform-tests/mediacapture-streams/stream-api/mediastreamtrack/mediastreamtrack-id.html |
diff --git a/LayoutTests/imported/web-platform-tests/mediacapture-streams/stream-api/mediastreamtrack/mediastreamtrack-id.html b/LayoutTests/imported/web-platform-tests/mediacapture-streams/stream-api/mediastreamtrack/mediastreamtrack-id.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fc372fe3e56d424a0701e8329c8509402b14ef43 |
--- /dev/null |
+++ b/LayoutTests/imported/web-platform-tests/mediacapture-streams/stream-api/mediastreamtrack/mediastreamtrack-id.html |
@@ -0,0 +1,29 @@ |
+<!doctype html> |
+<html> |
+<head> |
+<title>Distinct id for distinct mediastream tracks</title> |
+<link rel="author" title="Dominique Hazael-Massieux" href="mailto:dom@w3.org"/> |
+<link rel="help" href="http://dev.w3.org/2011/webrtc/editor/getusermedia.html#widl-MediaStreamTrack-id"> |
+<link rel='stylesheet' href='../../../../../resources/testharness.css' media='all'/> |
+</head> |
+<body> |
+<p class="instructions" style="display:none">When prompted, accept to share your audio and video stream.</p> |
+<h1 class="instructions" style="display:none">Description</h1> |
+<p class="instructions" style="display:none">This test checks that distinct mediastream tracks have distinct ids.</p> |
+ |
+<div id='log'></div> |
+<script src=../../../../../resources/testharness.js></script> |
+<script src=../../../../../resources/testharnessreport.js></script> |
+<script src="../../../../../resources/vendor-prefix.js" data-prefixed-objects='[{"ancestors":["navigator"], "name":"getUserMedia"}]'></script> |
+<script> |
+var t = async_test("Tests that distinct mediastream tracks have distinct ids ", {timeout: 10000}); |
+t.step(function () { |
+ navigator.getUserMedia({video: true, audio: true}, t.step_func(gotStream), t.step_func(function(error) {t.assert_unreached("Access to audio and video stream is granted");})); |
+ function gotStream(stream) { |
+ assert_not_equals(stream.getVideoTracks()[0], stream.getAudioTracks()[0].id, "audio and video tracks have distinct ids"); |
+ t.done(); |
+ } |
+}); |
+</script> |
+</body> |
+</html> |