https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 93776cefe33e150432abe256951e35e385ba82e2 authored by Ian Kilpatrick on 12 April 2018, 12:08:38 UTC
[css-layout-api] Fix DCHECK with the custom layout and multicol.
Tip revision: 93776ce
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