aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/navigation-timing/idlharness.window.js
blob: 8cc3546b3c27a9d93ee5621584d83d56a308513c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

'use strict';

// http://www.w3.org/TR/navigation-timing/

idl_test(
  ['navigation-timing'],
  ['resource-timing', 'performance-timeline', 'hr-time', 'dom'],
  idl_array => {
    idl_array.add_objects({
      Performance: ['performance'],
      PerformanceNavigation: ['performance.navigation'],
      PerformanceTiming: ['performance.timing'],
      PerformanceNavigationTiming: [
        'performance.getEntriesByType("navigation")[0]'
      ]
    });
  }
);