| Index: third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/MediaStream-gettrackid.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/MediaStream-gettrackid.html b/third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/MediaStream-gettrackid.html
|
| deleted file mode 100644
|
| index a7fabdaac5dff1396a8d1e52165f8af53e6b5d10..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/MediaStream-gettrackid.html
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -<!doctype html>
|
| -<html>
|
| -<head>
|
| -<title>Retrieving a track from a MediaStream</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-MediaStream-getTrackById-MediaStreamTrack-DOMString-trackId">
|
| -</head>
|
| -<body>
|
| -<p class="instructions">When prompted, accept to share your video stream.</p>
|
| -<h1 class="instructions">Description</h1>
|
| -<p class="instructions">This test checks that MediaStream.getTrackById behaves as expected</p>
|
| -
|
| -<div id='log'></div>
|
| -<script src=/resources/testharness.js></script>
|
| -<script src=/resources/testharnessreport.js></script>
|
| -<script src="/common/vendor-prefix.js" data-prefixed-objects='[{"ancestors":["navigator"], "name":"getUserMedia"}]'></script>
|
| -<script>
|
| -var t = async_test("Tests that MediaStream.getTrackById works as expected", {timeout: 10000});
|
| -t.step(function () {
|
| - navigator.getUserMedia(
|
| - {video: true},
|
| - t.step_func(gotVideo),
|
| - t.step_func(function (error) {
|
| - assert_unreached('Unexpected getUserMedia error: ' + error);
|
| - }));
|
| - function gotVideo(stream) {
|
| - var track = stream.getVideoTracks()[0];
|
| - assert_equals(track, stream.getTrackById(track.id), "getTrackById returns track of given id");
|
| - assert_equals(stream.getTrackById(track.id + "foo"), null, "getTrackById of inexistant id returns null");
|
| - t.done();
|
| - }
|
| -});
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|