diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/encrypted-media/drm-mp4-playback-temporary-two-videos.https.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/encrypted-media/drm-mp4-playback-temporary-two-videos.https.html')
-rw-r--r-- | testing/web-platform/tests/encrypted-media/drm-mp4-playback-temporary-two-videos.https.html | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/testing/web-platform/tests/encrypted-media/drm-mp4-playback-temporary-two-videos.https.html b/testing/web-platform/tests/encrypted-media/drm-mp4-playback-temporary-two-videos.https.html new file mode 100644 index 0000000000..cbd6c9c659 --- /dev/null +++ b/testing/web-platform/tests/encrypted-media/drm-mp4-playback-temporary-two-videos.https.html @@ -0,0 +1,54 @@ +<!doctype html> +<html> + <head> + <meta charset=utf-8> + <meta name="timeout" content="long"> + <title>Encrypted Media Extensions: Successful Playback, Temporary session with DRM, mp4, two videos</title> + <link rel="help" href="https://w3c.github.io/encrypted-media/"> + + <!-- Web Platform Test Harness scripts --> + <script src=/resources/testharness.js></script> + <script src=/resources/testharnessreport.js></script> + + <!-- Helper scripts for Encrypted Media Extensions tests --> + <script src=/encrypted-media/util/utils.js></script> + <script src=/encrypted-media/util/testmediasource.js></script> + <script src=/encrypted-media/util/utf8.js></script> + + <!-- Content metadata --> + <script src=/encrypted-media/content/content-metadata.js></script> + + <!-- Message handler for DRM server --> + <script src=/encrypted-media/util/drm-messagehandler.js></script> + + <!-- The script for this specific test --> + <script src=/encrypted-media/scripts/playback-temporary-two-videos.js></script> + + </head> + <body> + <div id='log'></div> + + <div id='video'> + <video id="videoelement1" width="200px"></video> + <video id="videoelement2" width="200px"></video> + </div> + + <script> + var keysystem = getSupportedKeySystem(), + contentitem = content['mp4-basic'], + handler = new MessageHandler( keysystem, contentitem ), + config = { video: [ document.getElementById( 'videoelement1' ), + document.getElementById( 'videoelement2' ) ], + keysystem: keysystem, + messagehandler: handler.messagehandler, + audioPath: contentitem.audio.path, + videoPath: contentitem.video.path, + audioType: contentitem.audio.type, + videoType: contentitem.video.type, + initDataType: contentitem.initDataType + }; + + runTest(config); + </script> + </body> +</html> |