summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/user-timing/user_timing_exists.any.js
blob: adf9052ebd58d8b3bb7ad85bca385095212b38ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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.");