https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 110e56d19199ff917fe15c739433f3cb7206e12c authored by Kinuko Yasuda on 27 March 2018, 04:00:12 UTC
Don't adjust the NavigationTimings on redirects
Tip revision: 110e56d
creation.html
<!DOCTYPE html>
<html>
<head>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
</head>
<body>
<script>

// Run captureStream() on <video>/<audio>s and inspect the generated Stream.

var makeAsyncTest = function(filename, numTracks) {
  async_test(function() {
    var video = document.createElement('video');
    video.src = "/media/" + filename;
    video.onerror = this.unreached_func("<video> error");
    video.play();

    assert_true('captureStream' in video);

    var stream = video.captureStream();
    assert_not_equals(stream, null, "error generating stream");

    // onactive event is marked for deprecation (https://crbug.com/649328)
    stream.onactive = this.step_func_done(function() {
      // The stream got a (number of) MediaStreamTracks added.
      assert_equals(stream.getVideoTracks().length, numTracks['vid'], 'video');
      assert_equals(stream.getAudioTracks().length, numTracks['aud'], 'audio');
    });
  }), "<video>.captureStream()";
};

generate_tests(makeAsyncTest, [
  [ "video-only", "test-v-128k-320x240-24fps-8kfr.webm", {vid : 1, aud : 0} ],
  [ "audio-only", "test-a-128k-44100Hz-1ch.webm", {vid : 0, aud : 1} ],
  [ "video+audio", "test-av-384k-44100Hz-1ch-320x240-30fps-10kfr.webm", {vid : 1, aud : 1} ]
]);

</script>
</body>
</html>
back to top