https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3fefc102d977b933ce97709acf8397c91d1fb0d9 authored by joysyu@google.com on 01 September 2017, 00:16:13 UTC
Hide relatively positioned layers in collapsed columns
Tip revision: 3fefc10
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