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?