summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/sandbox-attribute.https.html
blob: 1458145e4377e573f8aa13f5cb4d0dfdc7e09182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<title>Test fenced frame sandbox attribute.</title>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/utils.js"></script>
<script src="/common/dispatcher/dispatcher.js"></script>
<script src="resources/utils.js"></script>

<body>
<script>

async function runTest(t, sandbox_flags, success) {
  const frame = await attachFencedFrameContext({
      generator_api: 'fledge', resolve_to_config: true,
      attributes: [['sandbox', sandbox_flags]]});

  assert_equals(frame.element.sandbox.value, sandbox_flags);
  if (sandbox_flags) {
    assert_equals(frame.element.sandbox.length, sandbox_flags.split(' ').length);
  } else {
    assert_equals(frame.element.sandbox.length, 0);
  }

  const result = await Promise.any([
    frame.execute(() => { return 'success';}),
    new Promise(resolve => t.step_timeout(() => resolve('failure'), 2000))]);
  if (success) {
    assert_equals(result, 'success');
  } else {
    assert_equals(result, 'failure');
  }
}

// We omit test cases that lack the sandbox attribute, because that's covered
// by every other test that doesn't explicitly use the `sandbox` attribute.

promise_test(async t => {
  return runTest(t, '', false);
}, 'Navigation fails with no allowed features');

promise_test(async t => {
  return runTest(t, 'allow-same-origin allow-forms allow-scripts allow-popups allow-popups-to-escape-sandbox allow-top-navigation-by-user-activation', true);
}, 'Navigation succeeds with exactly the required unsandboxed features');

promise_test(async t => {
  return runTest(t, 'allow-same-origin allow-forms allow-scripts allow-popups allow-popups-to-escape-sandbox allow-top-navigation-by-user-activation allow-pointer-lock', true);
}, 'Navigation succeeds with extra unsandboxed features');

promise_test(async t => {
  return runTest(t, 'allow-same-origin allow-forms allow-scripts allow-popups allow-popups-to-escape-sandbox', false);
}, 'Navigation fails with too few unsandboxed features');

promise_test(async t => {
  return runTest(t, 'foo bar baz', false);
}, 'Navigation fails with malformed sandbox flags');

promise_test(async t => {
  return runTest(t, 'allow-same-origin allow-forms allow-scripts allow-popups allow-popups-to-escape-sandbox allow-top-navigation-by-user-activation allow-foobarbaz', true);
}, 'Navigation fails with the required unsandboxed features, plus some malformed ones');

</script>
</body>