File: rel-opener-prevents-browsing-context-group-change.tentative.html

package info (click to toggle)
firefox 144.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,637,504 kB
  • sloc: cpp: 7,576,692; javascript: 6,430,831; ansic: 3,748,119; python: 1,398,978; xml: 628,810; asm: 438,679; java: 186,194; sh: 63,212; makefile: 19,159; objc: 13,086; perl: 12,986; yacc: 4,583; cs: 3,846; pascal: 3,448; lex: 1,720; ruby: 1,003; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 53; csh: 10
file content (92 lines) | stat: -rw-r--r-- 3,052 bytes parent folder | download | duplicates (12)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<title>Prevent browsing context group changes</title>
<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="/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js"></script>

<body>
<script>

/*
 * These tests are tentative. They are based on the following proposal:
 * https://github.com/explainers-by-googlers/future-browsing-context-group-dependency-hint
 */

function navigateByRelOpenerAnchorToNew(remote) {
  function navigateByRelOpenerAnchorExecutorCreator(remote) {
    return (url) => {
      return remote.navigate((url) => {
        let anchor = document.createElement('a');
        anchor.href = url;
        anchor.rel = 'opener';
        anchor.text = 'Link';
        document.body.appendChild(anchor);
        anchor.click();
      }, [url]);
    };
  }

  return remote.helper.createContext({
        executorCreator: navigateByRelOpenerAnchorExecutorCreator(remote),
      });
}

function navigateBySelfOpenToNew(remote) {
  function navigateBySelfOpenExecutorCreator(remote) {
    return (url) => {
      return remote.navigate((url) => {
        window.open(url, '_self', 'opener');
      }, [url]);
    };
  }

  return remote.helper.createContext({
        executorCreator: navigateBySelfOpenExecutorCreator(remote),
      });
}

async function runNoGroupChangeTest(performNavigation) {
  const rcHelper = new RemoteContextHelper();
  // This test harness cannot be in the same browsing context group as the
  // navigating window, otherwise that would interfere with the test.
  const rcWindow = await rcHelper.addWindow(undefined, { features: 'noopener' });

  const rcWindow2 = await performNavigation(rcWindow);

  const rcPopup = await rcWindow2.addWindow(undefined, { target: 'my_popup' });

  assert_equals(await rcPopup.executeScript(() => {
    window.previouslyOpened = true;
    return window.name;
  }), 'my_popup', 'popup created');

  rcWindow2.historyBack();

  // In order for the original page to find the popup by name, they must be in
  // the same browsing context group.
  assert_true(await rcWindow.executeScript(() => {
    const popup = window.open('', 'my_popup');
    return popup.previouslyOpened;
  }), 'first page can access original popup');
}

promise_test(async t => {
  await runNoGroupChangeTest((remote) => {
    // Navigate away using rel=opener. The next page should remain in the same
    // browsing context group.
    return navigateByRelOpenerAnchorToNew(remote);
  });
}, 'rel=opener prevents browsing context group change');

promise_test(async t => {
  await runNoGroupChangeTest((remote) => {
    // Navigate away using window.open with the opener window feature. The next
    // page should remain in the same browsing context group.
    return navigateBySelfOpenToNew(remote);
  });
}, 'opener window feature prevents browsing context group change');

</script>
</body>