1
0
Fork 0
firefox/testing/web-platform/tests/encrypted-media/encrypted-media-default-feature-policy.https.sub.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
636 B
HTML

<!DOCTYPE html>
<body>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/feature-policy/resources/featurepolicy.js></script>
<script src=util/utils.js></script>
<script>
'use strict';
run_all_fp_tests_allow_self(
'https://{{domains[www]}}:{{ports[https][0]}}',
'encrypted-media',
'SecurityError',
function() {
return navigator.requestMediaKeySystemAccess('org.w3.clearkey', [{
sessionTypes: [ 'temporary' ],
audioCapabilities: getPossibleAudioCapabilities()
}]);
});
</script>
</body>