Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /cpu-performance/cpu-performance.https.window.html - WPT Dashboard Interop Dashboard
test(function() {
assert_equals(typeof navigator.cpuPerformance, 'number',
'navigator.cpuPerformance returns a number');
assert_true(Number.isInteger(navigator.cpuPerformance),
'navigator.cpuPerformance returns an integer value');
assert_true(navigator.cpuPerformance >= 0,
'navigator.cpuPerformance returns a non-negative value');
}, 'navigator.cpuPerformance is valid');