summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/hr-time/resources/timing-attack.js
blob: f1fc786903a8641444eda67ba55d25f05c2a932f (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
function run_test(isolated) {
  let resolution = 100;
  if (isolated) {
    resolution = 5;
  }
  test(function() {
    function check_resolutions(times, length) {
      const end = length - 2;

      // we compare each value with the following ones
      for (let i = 0; i < end; i++) {
        const h1 = times[i];
        for (let j = i+1; j < end; j++) {
          const h2 = times[j];
          const diff = h2 - h1;
          assert_true((diff === 0) || ((diff * 1000) >= resolution),
            "Differences smaller than ' + resolution + ' microseconds: " + diff);
        }
      }
      return true;
    }

    const times = new Array(10);
    let index = 0;
    let hrt1, hrt2, hrt;
    assert_equals(self.crossOriginIsolated, isolated, "Document cross-origin isolated value matches");

    // rapid firing of performance.now
    hrt1 = performance.now();
    hrt2 = performance.now();
    times[index++] = hrt1;
    times[index++] = hrt2;

    // ensure that we get performance.now() to return a different value
    do {
      hrt = performance.now();
      times[index++] = hrt;
    } while ((hrt - hrt1) === 0);

    assert_true(check_resolutions(times, index), 'Difference should be at least ' + resolution + ' microseconds.');
  }, 'The recommended minimum resolution of the Performance interface has been set to ' + resolution + ' microseconds for cross-origin isolated contexts.');
}