summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/general/test_toggling_performance_navigation_timing.html
blob: 6e6d94dca7aac465fb1eb626a034607171752b43 (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1511941 - Don't expose PerformanceNavigationTiming when it is disabled</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
  <div id="content"> </div>
  <script type="application/javascript">
    async function testWhetherExposed(resistFingerprinting, enable_performance_navigation_timing) {
      await SpecialPowers.pushPrefEnv({
        "set": [["privacy.resistFingerprinting", resistFingerprinting],
                ["dom.enable_performance_navigation_timing", enable_performance_navigation_timing]],
        });
      var iframe = document.createElement("iframe");
      document.body.append(iframe);
      var p = iframe.contentWindow.PerformanceNavigationTiming;
      if (enable_performance_navigation_timing && resistFingerprinting)
        isnot(p, undefined, "window.PerformanceNavigationTiming should be exposed when"
                         + " dom.enable_performance_navigation_timing=" + enable_performance_navigation_timing
                         + " and privacy.resistFingerprinting="+ resistFingerprinting +".");
      if (!enable_performance_navigation_timing)
        is(p, undefined, "window.PerformanceNavigationTiming should not be exposed when"
                         + " dom.enable_performance_navigation_timing=" + enable_performance_navigation_timing
                         + " and privacy.resistFingerprinting="+ resistFingerprinting +".");
      if (enable_performance_navigation_timing && !resistFingerprinting) {
        isnot(p, undefined, "window.PerformanceNavigationTiming should be exposed when"
                            + " dom.enable_performance_navigation_timing=" + enable_performance_navigation_timing
                            + " and privacy.resistFingerprinting="+ resistFingerprinting +".");
      }
    }

    async function start() {
      await testWhetherExposed(true,true);
      await testWhetherExposed(true,false);
      await testWhetherExposed(false,true);
      await testWhetherExposed(false,false);
      SimpleTest.finish();
    }

    SimpleTest.waitForExplicitFinish();
    start();
  </script>
</body>
</html>