Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 4 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /encrypted-media/encrypted-media-default-feature-policy.https.sub.html - WPT Dashboard Interop Dashboard
<!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(
'encrypted-media',
'SecurityError',
function() {
return navigator.requestMediaKeySystemAccess('org.w3.clearkey', [{
sessionTypes: [ 'temporary' ],
audioCapabilities: getPossibleAudioCapabilities()
}]);
});
</script>
</body>