Revision 6d11f4832a472ea783a8e584904bb36206d8bd18 authored by Luke Bjerring on 18 May 2018, 17:32:15 UTC, committed by Luke Bjerring on 18 May 2018, 17:32:15 UTC
1 parent 5855741
Raw File
user_timing_exists.any.js
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.");
back to top