https://github.com/web-platform-tests/wpt
Revision dd623515aa0fa9a1fc7b60e38e7dc7ee459c7e0a authored by Kent Tamura on 16 March 2018, 05:45:42 UTC, committed by Blink WPT Bot on 16 March 2018, 05:55:34 UTC
HTMLTreeBuilderSimulator assumed only <foreignObject> as an HTML
integration point. This CL adds <annotation-xml>, <desc>, and SVG
<title>.

Bug: 805924
Change-Id: I6793d9163d4c6bc8bf0790415baedddaac7a1fc2
Reviewed-on: https://chromium-review.googlesource.com/964038
Commit-Queue: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kouhei Ueno <kouhei@chromium.org>
Cr-Commit-Position: refs/heads/master@{#543634}
1 parent 2e8da45
Raw File
Tip revision: dd623515aa0fa9a1fc7b60e38e7dc7ee459c7e0a authored by Kent Tamura on 16 March 2018, 05:45:42 UTC
HTML parser: Fix "HTML integration point" implementation in HTMLTreeBuilderSimulator.
Tip revision: dd62351
feature-policy-header-policy-allowed-for-self.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 'self'; -->
  <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 \'self\'';

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

  // Test that fullscreen is only allowed on same-origin subframe.
  test_allowed_feature_for_subframe(
    header_policy + ' -- test fullscreen is allowed 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_allowed_feature_for_subframe(
    header_policy + ', iframe.allow = ' + allow + ' -- test fullscreen is allowed on same-origin subframe',
    'fullscreen',
    same_origin_src,
    allow);

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