0

Is it possible to use the NavigationTiming properties when using measure in the UserTiming API?

In other words, is the following according to spec?

window.performance.mark('foo');
window.performance.measure('myMeasurement', 'fetchStart', 'foo');

The UserTiming spec states that the NavigationTiming properties are reserved when calling mark, and it seems to behave that way when I experiment in the console.

However, I can't find anything in the spec which states this is the expected behavior. Anyone know?

jshalvi
  • 72
  • 3

1 Answers1

0

Nevermind, I found the answer here:

May be the name of one of the attributes in the PerformanceTiming interface [Navigation Timing].

jshalvi
  • 72
  • 3