summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/browsing-the-web/remote-context-helper-tests/addWindow-features.window.js
blob: 329c55e62622d65090d64b67557eb8b29968b319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// META: title=RemoteContextHelper addWindow features
// META: script=/common/dispatcher/dispatcher.js
// META: script=/common/get-host-info.sub.js
// META: script=/common/utils.js
// META: script=/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js
// META: script=./resources/test-helper.js

'use strict';

promise_test(async t => {
  const rcHelper = new RemoteContextHelper();
  {
    const main = await rcHelper.addWindow();
    await assertSimplestScriptRuns(main);
    await assertWindowHasOpenerEquals(main, true);
  }
  {
    const main = await rcHelper.addWindow(
        /*extraConfig=*/ null, /*options=*/ {features: 'noopener'});
    await assertSimplestScriptRuns(main);
    await assertWindowHasOpenerEquals(main, false);
  }
});