https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c417cb73192361552f7d8c10caffd2cf1f27956a authored by Florian Rivoal on 29 March 2018, 06:07:22 UTC
[css-overflow-3] test the flow-relative overflow properties
Tip revision: c417cb7
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