https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b1e9f14334bb9e17d158f1eb9a598967a80a1236 authored by Tarun Bansal on 09 April 2018, 19:19:04 UTC
Add external WPT test for cross-origin requests
Tip revision: b1e9f14
encrypted-media-default-feature-policy.https.sub.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>
back to top