https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 093b0b3d5d041c16ef342790acaf3e9c1b5e01e6 authored by Hayato Ito on 28 March 2018, 12:08:08 UTC
Keep track of all pending slot assignments, and recalc all before UpdateStyle phase
Tip revision: 093b0b3
feature-policy-nested-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>
  <script>
  /*
  fullscreen is disabled at the top-level document, therefore disabled
  everywhere throughout inheritance.
  */
  'use strict';
  const same_origin = 'https://{{domains[]}}:{{ports[https][0]}}';
  const cross_origin = 'https://{{domains[www]}}:{{ports[https][0]}}';
  const same_origin_src = '/feature-policy/resources/feature-policy-nested-subframe-policy.https.sub.html';
  const cross_origin_src = cross_origin + same_origin_src;
  const policies = ['*', '\'self\'', '\'none\''];

  for (var i = 0; i < policies.length; i++) {
    /* ------------------------------------------
       |  top-level document                    |
       |  ------------------------------------  |
       |  |  same-origin iframe              |  |
       |  |  ------------------------------  |  |
       |  |  |  local and remote iframes  |  |  |
       |  |  ------------------------------  |  |
       |  ------------------------------------  |
       ------------------------------------------ */
    test_subframe_header_policy('fullscreen', policies[i], same_origin_src,
        {local_all: false, local_self: false, local_none: false,
        remote_all: false, remote_self: false, remote_none: false},
        'Test nested header policy with local iframe on policy "fullscreen '
          + policies[i] + '".');

    /* -------------------------------------------
       |  top-level document                     |
       |  -------------------------------------  |
       |  |  cross-origin iframe              |  |
       |  |  -------------------------------  |  |
       |  |  |  local and remote iframes   |  |  |
       |  |  -------------------------------  |  |
       |  -------------------------------------  |
       ------------------------------------------- */
    test_subframe_header_policy('fullscreen', policies[i], cross_origin_src,
        {local_all: false, local_self: false, local_none: false,
        remote_all: false, remote_self: false, remote_none: false},
        'Test nested header policy with remote iframe on policy "fullscreen '
          + policies[i] + '".');
}
  </script>
</body>
back to top