Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/media/test/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  test_streams_individual_pause.html   Sprache: HTML

 
 products/Sources/formale Sprachen/C/Firefox/dom/media/test/test_streams_individual_pause.html


<!DOCTYPE HTML>
<html>
<head>
  <title>Test for bug 1073406. Pausing a video element should not pause another playing the same stream.</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <script type="text/javascript" src="manifest.js"></script>
  <script type="text/javascript" src="gUM_support.js"></script>
</head>
<body>
<video id="video1" autoplay></video>
<video id="video2" autoplay></video>
<script class="testbody" type="text/javascript">
function getVideoImagePixelData(v) {
  const canvas = document.createElement("canvas");
  const ctx = canvas.getContext("2d");
  ctx.drawImage(v, 0, 0);
  const imgData = ctx.getImageData(canvas.width/2, canvas.height/2, 1, 1).data;
  return "r" + imgData[0] +
         "g" + imgData[1] +
         "b" + imgData[2] +
         "a" + imgData[3];
}

async function startTest() {
  // This test expects fake devices so that the video color will change
  // over time, explicitly request fakes.
  await pushGetUserMediaTestPrefs({fakeAudio: true, fakeVideo: true});
  const stream = await navigator.mediaDevices.getUserMedia({video: true});
  const video1 = document.getElementById('video1');
  const video2 = document.getElementById('video2');

  video1.srcObject = stream;
  video2.srcObject = stream;

  await new Promise(r => video1.onplaying = r);
  video1.pause();
  await new Promise(r => video1.onpause = r);

  const v1PausedImageData = getVideoImagePixelData(video1);
  const v2PausedImageData = getVideoImagePixelData(video2);

  while (getVideoImagePixelData(video2) == v2PausedImageData) {
    info("video2 has not progressed. Waiting.");
    await new Promise(r => video2.ontimeupdate = r);
  }

  // Wait for a while to be sure video1 would have gotten a frame
  // if it is playing.
  for (let i = 3; i != 0; i--) {
    await new Promise(r => video2.ontimeupdate = r);
  }
  info("video2 progressed OK");

  isnot(video1.currentTime, video2.currentTime,
        "v1 and v2 should not be at the same currentTime");
  is(getVideoImagePixelData(video1), v1PausedImageData,
     "video1 video frame should not have updated since video1 paused");

  for (const t of stream.getTracks()) {
    t.stop();
  }
}

SimpleTest.waitForExplicitFinish();
(async function() {
  try {
    await startTest();
  } catch(error) {
    ok(false, "getUserMedia should not fail, got " + error.name);
  } finally {
    SimpleTest.finish();
  }
})();
</script>
</body>
</html>

Messung V0.5
C=97 H=95 G=95

¤ Dauer der Verarbeitung: 0.24 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.