https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d6ebd711521b88acf00f3f1bbd5c4560500e92ea authored by Brandon Jones on 20 November 2018, 17:24:18 UTC
Remove the multiview attribute from XRWebGLLayer
Tip revision: d6ebd71
feature-policy-header-policy-disallowed-for-all.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>
  <!-- Feature-Policy: fullscreen 'none'; -->
  <script>
  'use strict';
  var same_origin = 'https://{{domains[]}}:{{ports[https][0]}}';
  var cross_origin = 'https://{{domains[www]}}:{{ports[https][0]}}';
  var same_origin_src = '/feature-policy/resources/feature-policy-allowedfeatures.html';
  var cross_origin_src = cross_origin + same_origin_src;
  var header_policy = 'Feature-Policy: fullscreen \'none\'';

  // Test that fullscreen's allowlist is []
  test(function() {
    assert_array_equals(
      document.policy.getAllowlistForFeature('fullscreen'),
      []);
  }, header_policy + ' -- test allowlist is []');

  // Test that fullscreen is disallowed on all subframes.
  test_disallowed_feature_for_subframe(
    header_policy + ' -- test fullscreen is disallowed on same-origin subframe',
    'fullscreen',
    same_origin_src);
  test_disallowed_feature_for_subframe(
    header_policy + ' -- test fullscreen is disallowed on cross-origin subframe',
    'fullscreen',
    cross_origin_src);

  // Dynamically update sub frame's container policy
  var allow = "fullscreen 'src';"
  test_disallowed_feature_for_subframe(
    header_policy + ', iframe.allow = ' + allow + ' -- test fullscreen is disallowed on same-origin subframe',
    'fullscreen',
    same_origin_src,
    allow);

  test_disallowed_feature_for_subframe(
    header_policy + ', iframe.allow = ' + allow + ' -- test fullscreen is disallowed on cross-origin subframe',
    'fullscreen',
    cross_origin_src,
    allow);
  </script>
</body>
back to top