blob: d0127c1fc924bfb69284d65bcb21e674740d84b4 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../resources/runner.js"></script>
<script>
let results = [];
PerfTestRunner.measureTime({
description: "Measures performance of performance.now() calls.",
run: function() {
for (var i = 0; i < 500000; ++i) {
results.push(performance.now());
}
}
});
</script>
</body>
</html>