https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 89a7b39d4c0b8c2b2339fd26fa39ab802b6980f1 authored by Rune Lillesveen on 23 March 2018, 14:59:20 UTC
Don't skip display:none options finding selectable options.
Tip revision: 89a7b39
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