Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /user-timing/user_timing_exists.any.html - WPT Dashboard Interop Dashboard
- /user-timing/user_timing_exists.any.worker.html - WPT Dashboard Interop Dashboard
test(function() {
assert_not_equals(self.performance.mark, undefined);
}, "self.performance.mark is defined.");
test(function() {
assert_not_equals(self.performance.clearMarks, undefined);
}, "self.performance.clearMarks is defined.");
test(function() {
assert_not_equals(self.performance.measure, undefined);
}, "self.performance.measure is defined.");
test(function() {
assert_not_equals(self.performance.clearMeasures, undefined);
}, "self.performance.clearMeasures is defined.");