summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encrypted-media/encrypted-media-default-feature-policy.https.sub.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/encrypted-media/encrypted-media-default-feature-policy.https.sub.html')
-rw-r--r--testing/web-platform/tests/encrypted-media/encrypted-media-default-feature-policy.https.sub.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/encrypted-media/encrypted-media-default-feature-policy.https.sub.html b/testing/web-platform/tests/encrypted-media/encrypted-media-default-feature-policy.https.sub.html
new file mode 100644
index 0000000000..a5114262ad
--- /dev/null
+++ b/testing/web-platform/tests/encrypted-media/encrypted-media-default-feature-policy.https.sub.html
@@ -0,0 +1,20 @@
+<!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>