blob: 4620f09f91c51f3c1e8a2d63985208d7465afb9c [file] [log] [blame]
<!DOCTYPE html>
<body>
<script src="../resources/runner.js"></script>
<script>
var count = 0;
var format = new Intl.DateTimeFormat();
var DAY_IN_MS = 24 * 60 * 60 * 1000;
PerfTestRunner.measureRunsPerSecond({run() {
format.format(count++ * DAY_IN_MS);
}});
</script>
</body>