mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
12 lines
500 B
JavaScript
12 lines
500 B
JavaScript
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.");
|