• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!DOCTYPE html>
2<html>
3<body>
4<script src="../resources/runner.js"></script>
5<script>
6PerfTestRunner.measureRunsPerSecond({
7    description: "This benchmark repeatedly accesses document.implementation.",
8    run: function() {
9        for (var i = 0; i < 100000; ++i)
10            document.implementation;
11}});
12</script>
13</body>
14</html>
15