summaryrefslogtreecommitdiffstats
path: root/docshell/test/iframesandbox/test_top_navigation_by_user_activation.html
blob: b462c54d7b346a480fb3044abed8a934c4e44407 (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
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1744321
-->
<head>
<meta charset="utf-8">
<title>Iframe sandbox top navigation by user activation</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script>
function waitForMessage(aCallback) {
  return new Promise((aResolve) => {
    window.addEventListener("message", function listener(aEvent) {
      aCallback(aEvent);
      aResolve();
    }, { once: true });
  });
}

[
  {
    desc: "A same-origin iframe in sandbox with 'allow-top-navigation-by-user-activation' cannot navigate its top level page, if the navigation is not triggered by a user gesture",
    sameOrigin: true,
    userGesture: false,
  },
  {
    desc: "A same-origin iframe in sandbox with 'allow-top-navigation-by-user-activation' can navigate its top level page, if the navigation is triggered by a user gesture",
    sameOrigin: true,
    userGesture: true,
  },
  {
    desc: "A cross-origin iframe in sandbox with 'allow-top-navigation-by-user-activation' cannot navigate its top level page, if the navigation is not triggered by a user gesture",
    sameOrigin: false,
    userGesture: false,
  },
  {
    desc: "A cross-origin iframe in sandbox with 'allow-top-navigation-by-user-activation' can navigate its top level page, if the navigation is triggered by a user gesture",
    sameOrigin: false,
    userGesture: true,
  },
].forEach(({desc, sameOrigin, userGesture}) => {
  add_task(async function() {
    info(`Test: ${desc}`);

    let url = "file_top_navigation_by_user_activation.html";
    if (sameOrigin) {
      url = `${location.origin}/tests/docshell/test/iframesandbox/${url}`;
    }

    let promise = waitForMessage((e) => {
      is(e.data, "READY", "Ready for test");
    });
    let testWin = window.open(url);
    await promise;

    promise = waitForMessage((e) => {
      is(e.data, userGesture ? "NAVIGATED" : "BLOCKED", "Check the result");
    });
    testWin.postMessage(userGesture ? "CLICK" : "SCRIPT", "*");
    await promise;
    testWin.close();
  });
});
</script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1744321">Mozilla Bug 1744321</a>
<p id="display"></p>
<div id="content">
Tests for Bug 1744321
</div>
</body>
</html>